Skip to content

Commit d17528d

Browse files
authored
Update README.md
1 parent 19d9d2e commit d17528d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ String s1 = (String) JReJSON.get(jedis,"foo", new Path("."));
3636
String s2 = (String) JReJSON.get(jedis, "foo", Path.RootPath());
3737

3838
// Any Gson-able object can be set and updated
39-
JReJSON.set(jedis,"obj", new Object()); // just an empty object
39+
JReJSON.set(jedis,"obj", new Object()); // just an empty object
4040
JReJSON.set(jedis,"obj", null, new Path(".zilch"));
4141
Path p = new Path(".whatevs");
4242
JReJSON.set(jedis,"obj", true, p);
4343
JReJSON.set(jedis,"obj", 42, p);
44-
JReJSON.del(jedis,"obj", p); // back to almost nothing
44+
JReJSON.del(jedis,"obj", p); // back to almost nothing
4545

4646
```

0 commit comments

Comments
 (0)