summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/input.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-08-31 16:24:56 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-08-31 16:24:56 +0200
commitcb36e34719bf60904bc7fa39dfbcb0fa86310e66 (patch)
tree85fa97cbddd1bc6d25542dadb237d732adde0301 /user_guide/libraries/input.html
parent53653931de20b3cd41587d02659022e67d1a2d75 (diff)
grammar changes
Diffstat (limited to 'user_guide/libraries/input.html')
-rw-r--r--user_guide/libraries/input.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/libraries/input.html b/user_guide/libraries/input.html
index eae3a4d1a..ad73dffb7 100644
--- a/user_guide/libraries/input.html
+++ b/user_guide/libraries/input.html
@@ -120,7 +120,7 @@ Note: This function should only be used to deal with data upon submission. It's
<h2>Using POST, COOKIE, or SERVER Data</h2>
<p>CodeIgniter comes with three helper functions that let you fetch POST, COOKIE or SERVER items. The main advantage of using the provided
-functions rather then fetching an item directly ($_POST['something']) is that the functions will check to see if the item is set and
+functions rather than fetching an item directly ($_POST['something']) is that the functions will check to see if the item is set and
return false (boolean) if not. This lets you conveniently use data without having to test whether an item exists first.
In other words, normally you might do something like this:</p>