Skip to content

Commit f00f3e9

Browse files
committed
Merge branch 'master' of https://github.com/dieselpoint/norm.git
2 parents 99be2fa + d6f00eb commit f00f3e9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ Database db = new Database();
4545

4646
Person joe = new Person();
4747
joe.firstName = "Joe";
48-
joe.lastName = "Biden";
48+
joe.lastName = "Sixpack";
4949

5050
db.insert(joe);
5151

52-
List<Person> people = db.where("lastname=?", "Biden").orderBy("lastName").results(Person.class);
52+
List<Person> people = db.where("lastname=?", "Sixpack").orderBy("lastName").results(Person.class);
5353
```
5454

5555
The `Person` class:
@@ -261,8 +261,7 @@ Finally, you'll need to include your JDBC driver as a dependency. Here's a sampl
261261

262262
****
263263

264-
That's about it. Post any bugs or feature requests to the issue tracker. Post any support requests to Stack Overflow.
265-
264+
That's about it. Post any bugs or feature requests to the issue tracker.
266265

267266

268267

0 commit comments

Comments
 (0)