Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Small typo in routing.rst #8778

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions user_guide_src/source/incoming/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ Consider this URI::

example.com/index.php/helloworld/hello/1

In the above example, when you send a HTTP request with **GET** method,
In the above example, when you send an HTTP request with **GET** method,
Auto Routing would attempt to find a controller named ``App\Controllers\Helloworld``
and executes ``getHello()`` method with passing ``'1'`` as the first argument.

Expand Down Expand Up @@ -918,7 +918,7 @@ or to use :ref:`auto-routing-improved`,
Auto Routing (Legacy) feature. It is easy to create vulnerable apps where controller filters
or CSRF protection are bypassed.

.. important:: Auto Routing (Legacy) routes a HTTP request with **any** HTTP method to a controller method.
.. important:: Auto Routing (Legacy) routes an HTTP request with **any** HTTP method to a controller method.

Enable Auto Routing (Legacy)
============================
Expand Down