Skip to content

Commit

Permalink
Fix a few grammar things.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 2, 2024
1 parent 3b7e992 commit 9f6e32e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion en/development/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ will be treated as part of the parameter::

The above example illustrates how to create a quick way to view
models from any controller by crafting a URL that looks like
``/controllername/{id}``. The URL provided to ``connect()`` specifies two
``/controller-name/{id}``. The URL provided to ``connect()`` specifies two
route elements: ``{controller}`` and ``{id}``. The ``{controller}`` element
is a CakePHP default route element, so the router knows how to match and
identify controller names in URLs. The ``{id}`` element is a custom
Expand Down
4 changes: 2 additions & 2 deletions en/orm/query-builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ You can also get a key-value list out of a query result::
For more information on how to customize the fields used for populating the list
refer to :ref:`table-find-list` section.

Resultset Are Collection Objects
ResultSet Is A Collection Object
--------------------------------

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

// Use the combine() method from the collections library
Expand Down

0 comments on commit 9f6e32e

Please sign in to comment.