Fix example source code issues

Just some typos
This commit is contained in:
mqus 2020-05-03 22:21:29 +02:00 committed by Markus Richter
parent 727c30aa6b
commit 882b789c1b
No known key found for this signature in database
GPG Key ID: D2EAD1C38ED66957
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ final context =
final select = context.root as SelectStatement;
final resolvedColumns = select.resolvedColumns;
resolvedColumns.map((c) => c.name)); // id, content, id, content, 3 + 4
resolvedColumns.map((c) => context.typeOf(c).type.type) // int, text, int, text, int, int
resolvedColumns.map((c) => c.name); // id, content, id, content, 3 + 4
resolvedColumns.map((c) => context.typeOf(c).type.type); // int, text, int, text, int, int
```
## But why?