Yet more function documentation

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@573 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-07-14 01:08:08 +00:00
parent 0d6233c92b
commit c212c56806
10 changed files with 182 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
Function: english_plural
--Usage--
> english_plural(some_word)
> english_singular(some_word)
Convert a word to the plural or singular form.
--Parameters--
! Parameter Type Description
| @input@ [[type:string]] String to convert
--Examples--
> english_plural("apple") == "apples"
> english_plural("berry") == "berries"
> english_singular("Red Horses") == "Red Horse"