From 073d9f3179824a962301463b1440fc53e9d922ff Mon Sep 17 00:00:00 2001 From: sandrochuber <60277151+sandrochuber@users.noreply.github.com> Date: Fri, 5 Jun 2020 16:23:24 +0200 Subject: [PATCH] docs: fix small typo --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index 34af493348..d91149086a 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -1416,7 +1416,7 @@ V's ORM provides a number of benefits: - One syntax for all SQL dialects. Migrating between databases becomes much easier. - Queries are constructed using V's syntax. There's no need to learn another syntax. -- Safety. All queries are automatically santised to prevent SQL injection. +- Safety. All queries are automatically sanitised to prevent SQL injection. - Compile time checks. This prevents typos which can only be caught during runtime. - Readability and simplicity. You don't need to manually parse the results of a query and then manually construct objects from the parsed results.