diff options
author | Andrey Andreev <narf@devilix.net> | 2018-06-01 17:07:34 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2019-01-08 16:46:10 +0100 |
commit | 12ee9843877bf80159d1d89a0e3a4f170e902725 (patch) | |
tree | a8a9dfb5ec1632bceb5fa4842f5f86cff751b4c9 /user_guide_src/source/helpers | |
parent | c21c0359e1b4d96b1186ca2db78a01c7f38e904d (diff) |
[ci skip] Close #5482
Diffstat (limited to 'user_guide_src/source/helpers')
-rw-r--r-- | user_guide_src/source/helpers/inflector_helper.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/user_guide_src/source/helpers/inflector_helper.rst b/user_guide_src/source/helpers/inflector_helper.rst index df0c568c0..e3c014939 100644 --- a/user_guide_src/source/helpers/inflector_helper.rst +++ b/user_guide_src/source/helpers/inflector_helper.rst @@ -85,7 +85,7 @@ The following functions are available: echo humanize('my-dog-spot', '-'); // Prints 'My Dog Spot' -.. php:function:: is_countable($word) +.. php:function:: word_is_countable($word) :param string $word: Input string :returns: TRUE if the word is countable or FALSE if not @@ -93,4 +93,7 @@ The following functions are available: Checks if the given word has a plural version. Example:: - is_countable('equipment'); // Returns FALSE
\ No newline at end of file + word_is_countable('equipment'); // Returns FALSE + + .. note:: This function used to be called ``is_countable()`` in + in previous CodeIgniter versions. |