Skip to content

Commit

Permalink
Correct the function name in code example
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Apr 15, 2023
1 parent 825e463 commit 47086c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/Reference/database.md
Expand Up @@ -112,7 +112,7 @@ the `flowQuery` function can be executed.
```kotlin
val a = Meta.address
val query: FlowQuery<Address> = QueryDsl.from(a)
val flow: Flow<Address> = db.flow(query)
val flow: Flow<Address> = db.flowQuery(query)
```

Database access is made only when the `flow` instance is collected.
Expand Down

0 comments on commit 47086c5

Please sign in to comment.