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.
This commit is contained in:
Carl Meyer 2025-05-12 20:01:09 -07:00 committed by GitHub
parent 6fe5309889
commit 48201113d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)