Fix case in imports

This commit is contained in:
Simon Binder 2019-08-03 16:27:24 +02:00
parent 48331ab353
commit 4f96c255ee
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ aliases:
Moor supports sql joins to write queries that operate on more than one table. To use that feature, start
a select regular select statement with `select(table)` and then add a list of joins using `.join()`. For
inner and left outer joins, a `ON` expression needs to be specified. Here's an example using the tables
defined in the [example]({{< relref "../Getting Started/_index.md" >}}).
defined in the [example]({{< relref "../Getting started/_index.md" >}}).
```dart
// we define a data class to contain both a todo entry and the associated category

View File

@ -40,7 +40,7 @@ moor will figure out an appropriate type for them and include them in the genera
`'categoryById': 'SELECT * FROM categories WHERE id = :id'` will generate the method `categoryById(int id)`.
You can also use `UPDATE` or `DELETE` statements here. Of course, this feature is also available for
[daos]({{< relref "../Advanced features/daos.md" >}}),
[daos]({{< relref "../Advanced Features/daos.md" >}}),
and it perfectly integrates with auto-updating streams by analyzing what tables you're reading from or
writing to.