Skip to content

Commit db81195

Browse files
committed
changelog
1 parent f17aef0 commit db81195

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2626
- Added `DOMNode.displayed_children` https://github.com/Textualize/textual/pull/6070
2727
- Added `TextArea.UserInsert` message https://github.com/Textualize/textual/pull/6070
2828
- Added `TextArea.hide_suggestion_on_blur` boolean https://github.com/Textualize/textual/pull/6070
29-
- Added `OptionList.highlighted_option` property
30-
- Added `TextArea.update_suggestion` method
29+
- Added `OptionList.highlighted_option` property https://github.com/Textualize/textual/pull/6090
30+
- Added `TextArea.update_suggestion` method https://github.com/Textualize/textual/pull/6090
3131

3232
### Changed
3333

src/textual/widgets/_text_area.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ def notify_style_update(self) -> None:
663663
super().notify_style_update()
664664

665665
def update_suggestion(self) -> None:
666-
"""An hook to update suggestions."""
666+
"""A hook to update the [`suggestion`][textual.widgets.TextArea.suggestion] attribute."""
667667

668668
def check_consume_key(self, key: str, character: str | None = None) -> bool:
669669
"""Check if the widget may consume the given key.

0 commit comments

Comments
 (0)