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`: