diff --git a/docs/src/content/docs/getting-started/first-cli-app.mdx b/docs/src/content/docs/getting-started/first-cli-app.mdx index 22283da2..022c7dde 100644 --- a/docs/src/content/docs/getting-started/first-cli-app.mdx +++ b/docs/src/content/docs/getting-started/first-cli-app.mdx @@ -26,7 +26,7 @@ By simply starting TrailBase, the migrations in `traildepot/migrations` will be applied, including `U1728810800__create_table_movies.sql`: ```sql -CREATE TABLE movies IF NOT EXISTS ( +CREATE TABLE IF NOT EXISTS movies ( rank INTEGER PRIMARY KEY, name TEXT NOT NULL, year ANY NOT NULL, diff --git a/examples/blog/README.md b/examples/blog/README.md index aada0db0..c41ca820 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -76,7 +76,7 @@ $ docker compose down ## Detailed Instructions If you don't want to use the `docker compose` setup above, build from scratch, or -run the the Flutter app, only a few simple steps are needed. +run the Flutter app, only a few simple steps are needed. If you have `cargo`, `pnpm`, and `flutter` installed, you can simply run: ```bash @@ -109,7 +109,7 @@ $ make --always-make types ├── flutter # │   ├── lib # Flutter app lives here │   └── ... # Most other files a default cross-platform setup -├── Makefile # Builds JSON schemas and coge-generates type definitions +├── Makefile # Builds JSON schemas and code-generates type definitions ├── schema # Checked-in JSON schemas ├── traildepot # Where TrailBase keeps its runtime data │   ├── backups # Periodic DB backups diff --git a/examples/data-cli-tutorial/README.md b/examples/data-cli-tutorial/README.md index 6788d697..0e37bed2 100644 --- a/examples/data-cli-tutorial/README.md +++ b/examples/data-cli-tutorial/README.md @@ -14,7 +14,7 @@ By simply starting TrailBase, the migrations in `traildepot/migrations` will be applied, including `U1728810800__create_table_movies.sql`: ```sql -CREATE TABLE movies IF NOT EXISTS ( +CREATE TABLE IF NOT EXISTS movies ( rank INTEGER PRIMARY KEY, name TEXT NOT NULL, year ANY NOT NULL,