Skip to content

Commit

Permalink
Reformatted readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
BoD committed Jan 18, 2014
1 parent c2224a2 commit ae5dfa8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ If a `header.txt` file is present, its contents will be inserted at the top of e
```java
PersonSelection where = new PersonSelection();
where.firstName("John").or().age(42);
Cursor c = context.getContentResolver().query(PersonColumns.CONTENT_URI, projection, where.sel(), where.args(), null);
Cursor c = context.getContentResolver().query(PersonColumns.CONTENT_URI, projection,
where.sel(), where.args(), null);
```
- When using the results of a query, wrap the resulting `Cursor` in the corresponding `CursorWrapper`. You can then use
the generated getters directly as shown in this example:
Expand Down

0 comments on commit ae5dfa8

Please sign in to comment.