Skip to content

Commit

Permalink
Fix kotlin example in ktx-README (#1078)
Browse files Browse the repository at this point in the history
  • Loading branch information
paolorotolo authored Feb 12, 2021
1 parent e5f3715 commit 3a6fde5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ktx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ class Cat : ParseObject() {
}

var name: String
get = getString(KEY_NAME)
set(value) = putString(KEY_NAME, value)
get() = getString(KEY_NAME)
set(value) = put(KEY_NAME, value)

}
```
Expand Down

0 comments on commit 3a6fde5

Please sign in to comment.