From 48201113d2fc06c683fd51fa5d2f6bbc400d906b Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Mon, 12 May 2025 20:01:09 -0700 Subject: [PATCH] fix link to CLI docs (#341) ## Summary The file is `cli.md`, not `commands.md`. Not sure if there was an incomplete intention to rename the file here, but for the moment I'm just fixing the link; renaming the file will require adjusting at least the release script and possibly changing it in the ruff repo as well. ## Test Plan On this branch, the link works. --- docs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index 7d42ba2..11958a4 100644 --- a/docs/README.md +++ b/docs/README.md @@ -201,7 +201,7 @@ ty check \ --warn unused-ignore-comment \ # Enable `unused-ignore-comment` at warn --ignore redundant-cast \ # Disable `redundant-cast` --error possibly-unbound-attribute \ # Error on `possibly-unbound-attribute` - --error possibly-unbound-import # Error on `possibly-unbound-import` + --error possibly-unbound-import # Error on `possibly-unbound-import` ``` The options can be repeated. Subsequent options override earlier options. @@ -365,7 +365,7 @@ ty supports two command line arguments that change how exit codes work: For more details, see the reference documentation: -- [Commands](./reference/commands.md) +- [Commands](./reference/cli.md) - [Rules](./reference/rules.md) - [Configuration](./references/configuration.md) - [Environment variables](./reference/env.md)