Skip to content

Commit e289d74

Browse files
authored
Merge pull request #31 from T45K/patch-1
Fix typo of code sample
2 parents 7d83fde + b105969 commit e289d74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/Overview/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Applications can use the metamodel to construct queries in a type-safe manner:
125125
val a = Meta.address
126126

127127
// define a query
128-
val query = QueryDsl.from(e).where { a.street eq "STREET 101" }.orderBy(a.id)
128+
val query = QueryDsl.from(a).where { a.street eq "STREET 101" }.orderBy(a.id)
129129
```
130130

131131
### Immutable and composable queries {#immutable-and-composable-queries}

0 commit comments

Comments
 (0)