Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Fixed parsing Kitty extended keys with multiple codepoints https://github.com/Textualize/textual/pull/6592
- Fixed crash when clicking in the Screen's padding https://github.com/Textualize/textual/pull/6598
- Fixed typo ("wont" → "won't") in reactivity guide docs

### Changed

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/reactivity.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The `Name` widget has a reactive `who` attribute. When the app modifies that att

!!! information

Textual will check if a value has really changed, so assigning the same value wont prompt an unnecessary refresh.
Textual will check if a value has really changed, so assigning the same value won't prompt an unnecessary refresh.

### Disabling refresh

Expand All @@ -107,7 +107,7 @@ class MyWidget(Widget):
count = var(0) # (1)!
```

1. Changing `self.count` wont cause a refresh or layout.
1. Changing `self.count` won't cause a refresh or layout.

### Layout

Expand Down