Skip to content

Commit 25b99eb

Browse files
authored
Merge pull request #240 from labthings/tutorial-typo
Fix typo in writing_a_thing tutorial that stops it running.
2 parents 73ff0ac + 4440ba8 commit 25b99eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/source/tutorial/writing_a_thing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Our first Thing will pretend to be a light: we can set its brightness and turn i
2121
brightness: int = lt.property(default=100, ge=0, le=100)
2222
"""The brightness of the light, in % of maximum."""
2323
24-
is_on: bool = lt.property(default=False, readonly=true)
24+
is_on: bool = lt.property(default=False, readonly=True)
2525
"""Whether the light is currently on."""
2626
2727
@lt.action

0 commit comments

Comments
 (0)