Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(demo): fix typos and spelling #5195

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/textual/demo/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

## Reward repeated use
Use the mouse to explore, but Textual apps are keyboard-centric and reward repeated use.
An experience user can operate a Textual app far faster than their web / GUI counterparts.
An experienced user can operate a Textual app far faster than their web / GUI counterparts.

## Command palette
A builtin command palette with fuzzy searching puts powerful commands at your fingertips.
Expand Down Expand Up @@ -79,7 +79,7 @@

## Builtin widgets

A large [library of builtin widgets](https://textual.textualize.io/widget_gallery/), and a growing ecosystem of third party widgets on pyPi
A large [library of builtin widgets](https://textual.textualize.io/widget_gallery/), and a growing ecosystem of third party widgets on PyPI
(this content is generated by the builtin [Markdown](https://textual.textualize.io/widget_gallery/#markdown) widget).

## Reactive variables
Expand Down Expand Up @@ -110,15 +110,15 @@

## As a Python library

Textual apps make be pip installed, via tools such as `pipx` or `uvx`, and other package managers.
Textual apps may be pip installed, via tools such as `pipx` or `uvx`, and other package managers.

## As a web application

It takes two lines of code to [serve your Textual app](https://github.com/Textualize/textual-serve) as web application.
It takes two lines of code to [serve your Textual app](https://github.com/Textualize/textual-serve) as a web application.

## Managed web application

With [Textual web](https://github.com/Textualize/textual-serve) you can serve multiple Textual apps on the web,
With [Textual web](https://github.com/Textualize/textual-web) you can serve multiple Textual apps on the web,
with zero configuration. Even behind a firewall.
"""

Expand Down
4 changes: 2 additions & 2 deletions src/textual/demo/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class ListViews(containers.VerticalGroup):
## List Views and Option Lists

A List View turns any widget in to a user-navigable and selectable list.
An Option List for a for field to present a list of strings to select from.
An Option List for a field to present a list of strings to select from.

"""

Expand Down Expand Up @@ -272,7 +272,7 @@ class Logs(containers.VerticalGroup):
LOGS_MD = """\
## Logs and Rich Logs

A Log widget to efficiently display a scrolling view of text, with optional highlighted.
A Log widget to efficiently display a scrolling view of text, with optional highlighting.
And a RichLog widget to display Rich renderables.

"""
Expand Down
Loading