diff --git a/README.md b/README.md index 2fce0fc..0ae36b7 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ from objectbox import Entity, Id, Store, String @Entity() class Person: - id = Id - name = String + id = Id() + name = String() # The ObjectBox Store represents a database; keep it around... store = Store()