1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tutorials: fix typos (#16098)

This commit is contained in:
Grantley Cullar 2022-10-19 17:20:11 +08:00 committed by GitHub
parent 2f3c4c6d91
commit 37b03e57b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

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