We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b24ed0 + 228df0e commit 27dfb13Copy full SHA for 27dfb13
objectbox/example/README.md
@@ -118,7 +118,7 @@ import 'objectbox.g.dart';
118
119
final box = store.box<Note>();
120
121
-final note = Note(text: 'Hello'); // note: node.id is null
+final note = Note(text: 'Hello'); // note: note.id is null
122
final id = box.put(note); // note: sets note.id and also returns it
123
print('new note got id=${id}, which is the same as note.id=${note.id}');
124
print('refetched note: ${box.get(id)}');
0 commit comments