Skip to content

Commit

Permalink
Updated ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveBarnegren committed Apr 20, 2021
1 parent a548e94 commit 6040c8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Settings {
@MirrorUI var blurEnabled = true

init() {
_blurEnabled.didSet = { newValue in
$blurEnabled.didSet = { newValue in
// perform update
}
}
Expand All @@ -92,8 +92,8 @@ class Settings {
@MirrorUI var lives = true

init() {
_lives.min = 0
_lives.max = 99
$lives.min = 0
$lives.max = 99
}
}
```
Expand Down

0 comments on commit 6040c8a

Please sign in to comment.