diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-09-27 16:08:00 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-09-27 16:08:00 +0200 |
commit | e77162b9d3233cf6de1f4830262b79b3c2235ed3 (patch) | |
tree | f6744c3862f76e4fbb7492791b4e98f202836c66 /user_guide/general/views.html | |
parent | b3a84372fe82a44a016cbf12421d609b12cb1ea7 (diff) |
fixed some grammar errors in the Views documentation. Fixes #154
Diffstat (limited to 'user_guide/general/views.html')
-rw-r--r-- | user_guide/general/views.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/general/views.html b/user_guide/general/views.html index 107446946..b5dea05a1 100644 --- a/user_guide/general/views.html +++ b/user_guide/general/views.html @@ -109,12 +109,12 @@ class Blog extends Controller { </textarea> -<p>If you visit the your site using the URL you did earlier you should see your new view. The URL was similar to this:</p> +<p>If you visit your site using the URL you did earlier you should see your new view. The URL was similar to this:</p> <code>example.com/index.php/<var>blog</var>/</code> <h2>Loading multiple views</h2> -<p>CodeIgniter will intelligently handle multiple calls to $this->load->view from within a controller. If more then one call happens they will be appended together. For example, you may wish to have a header view, a menu view, a content view, and a footer view. That might look something like this:</p> +<p>CodeIgniter will intelligently handle multiple calls to $this->load->view from within a controller. If more than one call happens they will be appended together. For example, you may wish to have a header view, a menu view, a content view, and a footer view. That might look something like this:</p> <p><code><?php<br /> <br /> class Page extends Controller {<br /><br /> |