diff --git a/docs/src/languages/python.md b/docs/src/languages/python.md index 2323fe2f9560cf03c586eced0052627705addcc3..25d80f4a94bc4ba7af2dfaf89ba1860e39b849af 100644 --- a/docs/src/languages/python.md +++ b/docs/src/languages/python.md @@ -71,7 +71,7 @@ Zed provides several Python language servers out of the box. By default, [basedp Other built-in language servers are: -- [Ty](https://docs.astral.sh/ty/)—Up-and-coming language server from Astral, built for speed. +- [ty](https://docs.astral.sh/ty/)—Up-and-coming language server from Astral, built for speed. - [Pyright](https://github.com/microsoft/pyright)—The basis for basedpyright. - [PyLSP](https://github.com/python-lsp/python-lsp-server)—A plugin-based language server that integrates with tools like `pycodestyle`, `autopep8`, and `yapf`. @@ -82,7 +82,7 @@ These are disabled by default, but can be enabled in your settings. For example: "languages": { "Python": { "language_servers": [ - // Disable basedpyright and enable Ty, and otherwise + // Disable basedpyright and enable ty, and otherwise // use the default configuration. "ty", "!basedpyright", diff --git a/docs/src/migrate/pycharm.md b/docs/src/migrate/pycharm.md index 636bc69eeba1c09b3e0e8a0d74ccd859aedbb342..81895f882a0f5f1789ce22f9f9a4861fc70b92fe 100644 --- a/docs/src/migrate/pycharm.md +++ b/docs/src/migrate/pycharm.md @@ -164,7 +164,7 @@ Zed uses the Language Server Protocol (LSP) for code intelligence. For Python, Z - **basedpyright** (default) — Fast type checking and completions - **Ruff** (default) — Linting and formatting -- **Ty** — Up-and-coming language server from Astral, built for speed +- **ty** — Up-and-coming language server from Astral, built for speed - **Pyright** — Microsoft's type checker - **PyLSP** — Plugin-based server with tool integrations