From c2a1d827410ae3f1fc6cfd85a1b0a8775a4e1603 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Tue, 19 Sep 2023 10:49:31 +0100 Subject: [PATCH] fix links --- src/textual/app.py | 2 +- src/textual/fuzzy.py | 2 +- src/textual/screen.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/textual/app.py b/src/textual/app.py index ee5ce3d0a6..8ebf04c34b 100644 --- a/src/textual/app.py +++ b/src/textual/app.py @@ -329,7 +329,7 @@ class MyApp(App[None]): """Should the [command palette][textual.command.CommandPalette] be enabled for the application?""" COMMANDS: ClassVar[set[type[Provider]]] = {SystemCommands} - """Command providers used by the [command palette](/guide/command). + """Command providers used by the [command palette](/guide/command_palette). Should be a set of [command.Provider][textual.command.Provider] classes. """ diff --git a/src/textual/fuzzy.py b/src/textual/fuzzy.py index 6ee7940854..f2c46259d2 100644 --- a/src/textual/fuzzy.py +++ b/src/textual/fuzzy.py @@ -1,7 +1,7 @@ """ Fuzzy matcher. -This class is used by the [command palette](guide/command) to match search terms. +This class is used by the [command palette](guide/command_palette) to match search terms. """ diff --git a/src/textual/screen.py b/src/textual/screen.py index d0bb45cf0c..b93e9dc46e 100644 --- a/src/textual/screen.py +++ b/src/textual/screen.py @@ -158,7 +158,7 @@ class Screen(Generic[ScreenResultType], Widget): """Screen title to override [the app title][textual.app.App.title].""" COMMANDS: ClassVar[set[type[Provider]]] = set() - """Command providers used by the [command palette](/guide/command), associated with the screen. + """Command providers used by the [command palette](/guide/command_palette), associated with the screen. Should be a set of [`command.Provider`][textual.command.Provider] classes. """