diff options
author | Andrey Andreev <narf@devilix.net> | 2018-03-15 15:58:31 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2018-03-15 15:59:03 +0100 |
commit | cdf3a9a54fb240bc17fc681b02bd6327ac15d7d0 (patch) | |
tree | 291341d0b1d466414daf44ffce857b1e1aa4b497 | |
parent | bcce0a17f72c9550491a35e35555294943ff7fc1 (diff) |
[ci skip] Merge pull request #5437 from MadGuyyy/develop
Docs spelling fix: utlize -> utilize
-rw-r--r-- | user_guide_src/source/database/query_builder.rst | 2 |
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 1b79c893a..38bc7fcff 100644 --- a/user_guide_src/source/database/query_builder.rst +++ b/user_guide_src/source/database/query_builder.rst @@ -654,7 +654,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()`. |