diff --git a/docs/content/en/docs/Getting started/writing_queries.md b/docs/content/en/docs/Getting started/writing_queries.md index 48eeccb7..e7c648b3 100644 --- a/docs/content/en/docs/Getting started/writing_queries.md +++ b/docs/content/en/docs/Getting started/writing_queries.md @@ -58,7 +58,7 @@ You can also reverse the order by setting the `mode` property of the `OrderingTe `OrderingMode.desc`. ### Single values -If you now a query is never going to return more than one row, wrapping the result in a `List` +If you know a query is never going to return more than one row, wrapping the result in a `List` can be tedious. Moor lets you work around that with `getSingle` and `watchSingle`: ```dart Stream entryById(int id) { @@ -142,4 +142,4 @@ can be omitted. All other fields must be set and non-null. The `insert` method w otherwise. Multiple inserts can be batched by using `insertAll` - it takes a list of companions instead -of a single companion. \ No newline at end of file +of a single companion.