Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Sep 19, 2023
1 parent 27ab81e commit c2a1d82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/textual/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/textual/fuzzy.py
Original file line number Diff line number Diff line change
@@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion src/textual/screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down

0 comments on commit c2a1d82

Please sign in to comment.