Skip to content
Closed
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
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