summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2007-03-28 03:26:32 +0200
committerDerek Allard <derek.allard@ellislab.com>2007-03-28 03:26:32 +0200
commitd8b92a38e755564c62b57a3ed1d3441c212ef4b9 (patch)
tree8fc833415565ef30fc0b52d5013385af38900dae /user_guide/libraries
parent5c3905b4241b4ff68f768a81151f8c6e7a75fa5d (diff)
typo fix
Diffstat (limited to 'user_guide/libraries')
-rw-r--r--user_guide/libraries/loader.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/libraries/loader.html b/user_guide/libraries/loader.html
index 4bc5d6344..d9fb64d34 100644
--- a/user_guide/libraries/loader.html
+++ b/user_guide/libraries/loader.html
@@ -103,7 +103,7 @@ how this might be useful.</p>
<p>The third <strong>optional</strong> parameter lets you change the behavior of the function so that it returns data as a string
rather than sending it to your browser. This can be useful if you want to process the data in some way. If you
set the parameter to <kbd>true</kbd> (boolean) it will return data. The default behavior is <kbd>false</kbd>, which sends it
-to your browser. Remember to assign it to a variable if you wan the data returned:</p>
+to your browser. Remember to assign it to a variable if you want the data returned:</p>
<code>$string = $this->load->view('<var>myfile</var>', '', <kbd>true</kbd>);</code>