Skip to content

Commit 7da5902

Browse files
authored
Fix a few grammar things. (#7969)
1 parent 3b7e992 commit 7da5902

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

en/development/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ will be treated as part of the parameter::
295295

296296
The above example illustrates how to create a quick way to view
297297
models from any controller by crafting a URL that looks like
298-
``/controllername/{id}``. The URL provided to ``connect()`` specifies two
298+
``/controller-name/{id}``. The URL provided to ``connect()`` specifies two
299299
route elements: ``{controller}`` and ``{id}``. The ``{controller}`` element
300300
is a CakePHP default route element, so the router knows how to match and
301301
identify controller names in URLs. The ``{id}`` element is a custom

en/orm/query-builder.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,12 @@ You can also get a key-value list out of a query result::
150150
For more information on how to customize the fields used for populating the list
151151
refer to :ref:`table-find-list` section.
152152

153-
Resultset Are Collection Objects
153+
ResultSet Is A Collection Object
154154
--------------------------------
155155

156156
Once you get familiar with the Query object methods, it is strongly encouraged
157157
that you visit the :doc:`Collection </core-libraries/collections>` section to
158-
improve your skills in efficiently traversing the results. The resultset (returned
158+
improve your skills in efficiently traversing the results. The ResultSet (returned
159159
by calling the ``SelectQuery``'s ``all()`` method) implements the collection interface::
160160

161161
// Use the combine() method from the collections library

0 commit comments

Comments
 (0)