summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2018-03-15 15:58:31 +0100
committerGitHub <noreply@github.com>2018-03-15 15:58:31 +0100
commitf3e19ac4990e1e3fbc6964e97e7e09e506935d6e (patch)
treef32d6c811cf1a84907c8c5ede4c05885dbb69430 /user_guide_src
parentffab7c1c7f9f5a0f3d82c6d9a89f1ebc77d6922f (diff)
parentb55994602a90a1d9ffc56107f193d8b5c61e6a66 (diff)
[ci skip] Merge pull request #5437 from MadGuyyy/develop
Docs spelling fix: utlize -> utilize
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/database/query_builder.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/database/query_builder.rst b/user_guide_src/source/database/query_builder.rst
index 7c1bd4cc0..860b34d4c 100644
--- a/user_guide_src/source/database/query_builder.rst
+++ b/user_guide_src/source/database/query_builder.rst
@@ -700,7 +700,7 @@ will be reset (by default it will be--just like $this->db->insert())::
// Produces string: INSERT INTO mytable (`title`, `content`) VALUES ('My Title', 'My Content')
The key thing to notice in the above example is that the second query did not
-utlize `$this->db->from()` nor did it pass a table name into the first
+utilize `$this->db->from()` nor did it pass a table name into the first
parameter. The reason this worked is because the query has not been executed
using `$this->db->insert()` which resets values or reset directly using
`$this->db->reset_query()`.