@@ -88,7 +88,7 @@ $query, which can be used to show the results:
8888
8989.. literalinclude :: query_builder/004.php
9090
91- Please visit the :doc: `getResult* () method <results >` page for a full
91+ Please visit the :doc: `getResult() method <results >` page for a full
9292discussion regarding result generation.
9393
9494$builder->getCompiledSelect()
@@ -101,14 +101,14 @@ Example:
101101
102102.. literalinclude :: query_builder/005.php
103103
104- The first parameter enables you to set whether or not the query builder query
104+ The parameter in the first query (false) enables you to set whether or not the query builder
105105will be reset (by default it will be reset, just like when using ``$builder->get() ``):
106106
107107.. literalinclude :: query_builder/006.php
108108
109109The key thing to notice in the above example is that the second query did not
110110utilize ``limit(10, 20) `` but the generated SQL query has ``LIMIT 20, 10 ``.
111- The reason for this outcome is because the first parameter is set to ``false ``.
111+ The reason for this outcome is because the parameter in the first query is set to ``false ``, `` limit(10, 20) `` remained in the second query .
112112
113113$builder->getWhere()
114114--------------------
@@ -169,7 +169,7 @@ $builder->selectMin()
169169---------------------
170170
171171Writes a **SELECT MIN(field) ** portion for your query. As with
172- ``selectMax() ``, You can optionally include a second parameter to rename
172+ ``selectMax() ``, you can optionally include a second parameter to rename
173173the resulting field.
174174
175175.. literalinclude :: query_builder/011.php
@@ -178,7 +178,7 @@ $builder->selectAvg()
178178---------------------
179179
180180Writes a **SELECT AVG(field) ** portion for your query. As with
181- ``selectMax() ``, You can optionally include a second parameter to rename
181+ ``selectMax() ``, you can optionally include a second parameter to rename
182182the resulting field.
183183
184184.. literalinclude :: query_builder/012.php
@@ -187,7 +187,7 @@ $builder->selectSum()
187187---------------------
188188
189189Writes a **SELECT SUM(field) ** portion for your query. As with
190- ``selectMax() ``, You can optionally include a second parameter to rename
190+ ``selectMax() ``, you can optionally include a second parameter to rename
191191the resulting field.
192192
193193.. literalinclude :: query_builder/013.php
@@ -196,7 +196,7 @@ $builder->selectCount()
196196-----------------------
197197
198198Writes a **SELECT COUNT(field) ** portion for your query. As with
199- ``selectMax() ``, You can optionally include a second parameter to rename
199+ ``selectMax() ``, you can optionally include a second parameter to rename
200200the resulting field.
201201
202202.. note :: This method is particularly helpful when used with ``groupBy()``. For
0 commit comments