diff options
author | vlakoff <vlakoff@gmail.com> | 2013-02-15 01:36:04 +0100 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2013-02-15 01:36:04 +0100 |
commit | 3567246091195e035ea4c8d3b2915eb6b45ad5e2 (patch) | |
tree | 5abb111b5b6a1ecbe79720b37057df085bebad38 /user_guide_src/source/general | |
parent | 3a533ac93a62f15c2abd186878238b0a99e10f88 (diff) |
Various cosmetic fixes
Diffstat (limited to 'user_guide_src/source/general')
-rw-r--r-- | user_guide_src/source/general/controllers.rst | 4 | ||||
-rw-r--r-- | user_guide_src/source/general/routing.rst | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/general/controllers.rst b/user_guide_src/source/general/controllers.rst index 729b08417..8cfb012a0 100644 --- a/user_guide_src/source/general/controllers.rst +++ b/user_guide_src/source/general/controllers.rst @@ -108,7 +108,7 @@ Passing URI Segments to your methods If your URI contains more then two segments they will be passed to your method as parameters. -For example, lets say you have a URI like this:: +For example, let's say you have a URI like this:: example.com/index.php/products/shoes/sandals/123 @@ -267,7 +267,7 @@ Simply create folders within your *application/controllers/* directory and place your controller classes within them. .. note:: When using this feature the first segment of your URI must - specify the folder. For example, lets say you have a controller located + specify the folder. For example, let's say you have a controller located here:: application/controllers/products/shoes.php diff --git a/user_guide_src/source/general/routing.rst b/user_guide_src/source/general/routing.rst index ed21a6109..0c6dfe888 100644 --- a/user_guide_src/source/general/routing.rst +++ b/user_guide_src/source/general/routing.rst @@ -12,7 +12,7 @@ In some instances, however, you may want to remap this relationship so that a different class/method can be called instead of the one corresponding to the URL. -For example, lets say you want your URLs to have this prototype:: +For example, let's say you want your URLs to have this prototype:: example.com/product/1/ example.com/product/2/ |