From 580defc9963398b4814558e094857e5dfbf193e7 Mon Sep 17 00:00:00 2001 From: Allan Logedi <77148305+logz254@users.noreply.github.com> Date: Mon, 13 Jan 2025 21:49:46 +0300 Subject: [PATCH] Update 01-quickstart-sqlite.mdx (#6590) Small typo --- content/100-getting-started/01-quickstart-sqlite.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/100-getting-started/01-quickstart-sqlite.mdx b/content/100-getting-started/01-quickstart-sqlite.mdx index 4071e1ee4f..97dd999335 100644 --- a/content/100-getting-started/01-quickstart-sqlite.mdx +++ b/content/100-getting-started/01-quickstart-sqlite.mdx @@ -399,7 +399,7 @@ npx tsx script.ts -This time, you're seeing two `User` objects being printed. Both of them have a `posts` field (which is empty for `"Alice"` and populated with a single `Post` object for `"Bob"`) that represents the `Post` records associated with them. +This time, you're seeing two `User` objects being printed. Both of them have a `posts` field (which is empty for `"Alice"` and populated with two `Post` objects for `"Bob"`) that represents the `Post` records associated with them. Notice that the objects in the `usersWithPosts` array are fully typed as well. This means you will get autocompletion and the TypeScript compiler will prevent you from accidentally typing them.