Skip to content

Commit bcd8054

Browse files
authored
Merge pull request #6925 from kenjis/fix-docs-mvc.rst
docs: use lower case for view file path
2 parents 0a438b7 + f8cdbfe commit bcd8054

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • user_guide_src/source/concepts

user_guide_src/source/concepts/mvc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Views are generally stored in **app/Views**, but can quickly become unwieldy if
5151
CodeIgniter does not enforce any type of organization, but a good rule of thumb would be to create a new directory in
5252
the **Views** directory for each controller. Then, name views by the method name. This makes them very easy to find later
5353
on. For example, a user's profile might be displayed in a controller named ``User``, and a method named ``profile``.
54-
You might store the view file for this method in **app/Views/User/Profile.php**.
54+
You might store the view file for this method in **app/Views/user/profile.php**.
5555

5656
That type of organization works great as a base habit to get into. At times you might need to organize it differently.
5757
That's not a problem. As long as CodeIgniter can find the file, it can display it.

0 commit comments

Comments
 (0)