Skip to content

Commit 27dfb13

Browse files
authored
Merge pull request #192 from theimpulson/main
example/README: Fix typo in comment
2 parents 7b24ed0 + 228df0e commit 27dfb13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objectbox/example/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ import 'objectbox.g.dart';
118118
119119
final box = store.box<Note>();
120120
121-
final note = Note(text: 'Hello'); // note: node.id is null
121+
final note = Note(text: 'Hello'); // note: note.id is null
122122
final id = box.put(note); // note: sets note.id and also returns it
123123
print('new note got id=${id}, which is the same as note.id=${note.id}');
124124
print('refetched note: ${box.get(id)}');

0 commit comments

Comments
 (0)