Skip to content

Commit 134826c

Browse files
committed
Get the README up to date with the change in #27 (#28)
1 parent 2d46030 commit 134826c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jsonpointer.get(obj, '/bar/baz'); // returns 2
1212
jsonpointer.get(obj, '/qux/0'); // returns 3
1313
jsonpointer.get(obj, '/qux/1'); // returns 4
1414
jsonpointer.get(obj, '/qux/2'); // returns 5
15-
jsonpointer.get(obj, '/quo'); // returns null
15+
jsonpointer.get(obj, '/quo'); // returns undefined
1616

1717
jsonpointer.set(obj, '/foo', 6); // sets obj.foo = 6;
1818
jsonpointer.set(obj, '/qux/-', 6) // sets obj.qux = [3, 4, 5, 6]

0 commit comments

Comments
 (0)