From efa6e231bce1b1423841c10f46c78eef9b98e5d7 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 1 Mar 2025 22:08:07 +0900 Subject: [PATCH] [Doc] Fix incorrect hyperlink in the README This PR corrects the following incorrect URL. ```diff -https://github.com/standardrb/lint_roller/blob/main/lib/lint_roller_context.rb +https://github.com/standardrb/lint_roller/blob/main/lib/lint_roller/context.rb ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23fb72a..8222331 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ end And that's pretty much it. Just a declarative way to identify your plugin, detect whether it supports the given -[LintRoller::Context](/lib/lint_roller_context.rb) (e.g. the current `runner` +[LintRoller::Context](/lib/lint_roller/context.rb) (e.g. the current `runner` and `engine` and their respective `_version`s), for which the plugin will ultimately its configuration as a [LintRoller::Rules](/lib/lint_roller/rules.rb) object.