diff --git a/objectbox/example/README.md b/objectbox/example/README.md index 8b38a8264..1d244b3b7 100644 --- a/objectbox/example/README.md +++ b/objectbox/example/README.md @@ -118,7 +118,7 @@ import 'objectbox.g.dart'; final box = store.box(); -final note = Note(text: 'Hello'); // note: node.id is null +final note = Note(text: 'Hello'); // note: note.id is null final id = box.put(note); // note: sets note.id and also returns it print('new note got id=${id}, which is the same as note.id=${note.id}'); print('refetched note: ${box.get(id)}');