1
0
Fork 0
mirror of https://github.com/ethauvin/kotlin-pluralizer.git synced 2025-04-24 16:27:12 -07:00

added more samples

This commit is contained in:
Cesar Ferreira 2016-09-05 00:48:38 +01:00
parent ca927135f3
commit acf66ae704

View file

@ -13,6 +13,7 @@
"person".pluralize() # => "people"
"post".pluralize() # => "posts"
"sheep".pluralize() # => "sheep"
"foot".pluralize() # => "feet"
```
**Singuralization:**
@ -20,7 +21,8 @@
```kotlin
"words".singularize() # => "word"
"octopi".singularize() # => "octopus"
"people".singularize() # => "person"
"feet".singularize() # => "foot"
```
## Install