Skip to content

Commit f5c97f5

Browse files
committed
corrected terms
1 parent 6cc4d0f commit f5c97f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
- Collapsible title now accepts str, Text, or Content https://github.com/Textualize/textual/pull/5697
1818
- Rich Text objects will be converted to Content in OptionList and other widgets https://github.com/Textualize/textual/pull/5712
1919
- Textual will always convert dim attributes to RGB by default https://github.com/Textualize/textual/pull/5715
20-
- Notifications will now use Content markup (previously they used Console markup) https://github.com/Textualize/textual/pull/5719
20+
- Notifications will now use Textual markup (previously they used Console markup) https://github.com/Textualize/textual/pull/5719
2121

2222
### Added
2323

@@ -37,7 +37,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3737
- Breaking change: `App.query` and friends will now always query the default (first) screen, not necessarily the active screen.
3838
- Content now has a default argument of an empty string, so `Content()` is equivalent to `Content("")`
3939
- Assigned names to Textual-specific threads: `textual-input`, `textual-output`. These should become visible in monitoring tools (ps, top, htop) as of Python 3.14. https://github.com/Textualize/textual/pull/5654
40-
- Tabs now accept Content or content markup https://github.com/Textualize/textual/pull/5657
40+
- Tabs now accept Content or Textual markup https://github.com/Textualize/textual/pull/5657
4141
- Buttons will now use Textual markup rather than console markup
4242
- tree-sitter languages are now loaded lazily, improving cold-start time https://github.com/Textualize/textual/pull/563
4343

@@ -124,7 +124,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
124124

125125
### Fixed
126126

127-
- Fixed escape tags in Content markup https://github.com/Textualize/textual/pull/5536
127+
- Fixed escape tags in Textual markup https://github.com/Textualize/textual/pull/5536
128128

129129
## [2.0.0] - 2025-02-16
130130

src/textual/content.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def __str__(self) -> str:
145145

146146
@cached_property
147147
def markup(self) -> str:
148-
"""Get Content markup to render this Text.
148+
"""Get Textual markup to render this Text.
149149
150150
Returns:
151151
str: A string potentially creating markup tags.

0 commit comments

Comments
 (0)