From 1f622294b92c095fd91e8ca44912d405c1605ded Mon Sep 17 00:00:00 2001 From: Pascal Kriete Date: Thu, 7 Apr 2011 12:06:51 -0400 Subject: Wow, I screwed that up, Reactor is going to 2.0.2 not 2.0.1 --- user_guide/helpers/inflector_helper.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user_guide/helpers/inflector_helper.html') diff --git a/user_guide/helpers/inflector_helper.html b/user_guide/helpers/inflector_helper.html index 3481739d7..221c05907 100644 --- a/user_guide/helpers/inflector_helper.html +++ b/user_guide/helpers/inflector_helper.html @@ -28,7 +28,7 @@
- +

CodeIgniter User Guide Version 2.0.1

CodeIgniter User Guide Version 2.0.2

-- cgit v1.2.3-24-g4f1b From 114ab0988e20ac6be39ad363ff897a1a3b85e565 Mon Sep 17 00:00:00 2001 From: Razican Date: Mon, 25 Apr 2011 17:26:45 +0200 Subject: Fixed double-space typo. --- user_guide/helpers/inflector_helper.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'user_guide/helpers/inflector_helper.html') diff --git a/user_guide/helpers/inflector_helper.html b/user_guide/helpers/inflector_helper.html index 221c05907..087675454 100644 --- a/user_guide/helpers/inflector_helper.html +++ b/user_guide/helpers/inflector_helper.html @@ -71,7 +71,7 @@ Inflector Helper

singular()

-

Changes a plural word to singular. Example:

+

Changes a plural word to singular. Example:

$word = "dogs";
@@ -81,7 +81,7 @@ echo singular($word); // Returns "dog"

plural()

-

Changes a singular word to plural. Example:

+

Changes a singular word to plural. Example:

$word = "dog";
@@ -94,7 +94,7 @@ echo plural($word); // Returns "dogs" echo plural($word, TRUE); // Returns "passes"

camelize()

-

Changes a string of words separated by spaces or underscores to camel case. Example:

+

Changes a string of words separated by spaces or underscores to camel case. Example:

$word = "my_dog_spot";
@@ -104,7 +104,7 @@ echo camelize($word); // Returns "myDogSpot"

underscore()

-

Takes multiple words separated by spaces and underscores them. Example:

+

Takes multiple words separated by spaces and underscores them. Example:

$word = "my dog spot";
@@ -114,7 +114,7 @@ echo underscore($word); // Returns "my_dog_spot"

humanize()

-

Takes multiple words separated by underscores and adds spaces between them. Each word is capitalized. Example:

+

Takes multiple words separated by underscores and adds spaces between them. Each word is capitalized. Example:

$word = "my_dog_spot";
-- cgit v1.2.3-24-g4f1b