From 37b03e57b43e88325ecf8797b5f3f3ffcb7c60db Mon Sep 17 00:00:00 2001 From: Grantley Cullar <83633399+gospacedev@users.noreply.github.com> Date: Wed, 19 Oct 2022 17:20:11 +0800 Subject: [PATCH] tutorials: fix typos (#16098) --- tutorials/C2V_translating_simple_programs_and_DOOM/README.md | 2 +- tutorials/building_a_simple_web_blog_with_vweb/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/C2V_translating_simple_programs_and_DOOM/README.md b/tutorials/C2V_translating_simple_programs_and_DOOM/README.md index 87ff75d081..817bf68b18 100644 --- a/tutorials/C2V_translating_simple_programs_and_DOOM/README.md +++ b/tutorials/C2V_translating_simple_programs_and_DOOM/README.md @@ -75,7 +75,7 @@ This is a valid V program, and running it will give us the same result. This code is pretty similar to the original, you can notice one major difference. C allows one statement code blocks without brackets, and V doesn't, so in the -translated code all blocks are explicitely marked with brackets. +translated code all blocks are explicitly marked with brackets. C2V successfully converts C's bool type to V's bool. diff --git a/tutorials/building_a_simple_web_blog_with_vweb/README.md b/tutorials/building_a_simple_web_blog_with_vweb/README.md index c2a508f919..7b69fa3a2f 100644 --- a/tutorials/building_a_simple_web_blog_with_vweb/README.md +++ b/tutorials/building_a_simple_web_blog_with_vweb/README.md @@ -175,7 +175,7 @@ that's done by the `$vweb.html()` line. Now let's display some articles! -We'll be using V's builtin ORM and a SQLite database. +We'll be using V's built-in ORM and a SQLite database. (V ORM will also support MySQL, Postgre, and SQL Server soon.) Add a SQLite handle to `App`: