We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d577725 commit a580d04Copy full SHA for a580d04
README.md
@@ -30,9 +30,11 @@ $word = new Word('cat');
30
31
$rhymes = $word->rhymes();
32
$halfRhymes = $word->halfRhymes();
33
-$numberOfSyllables = $word->syllables(); // Returns an integer
34
-$isOffensive = $word->offensive(); // Returns true/false
35
$portmanteaus = $word->portmanteaus();
+$numberOfSyllables = $word->syllables(); // Returns an integer
+$isOffensive = $word->offensive(); // Returns true/false
36
+$plural = $word->plural(); // Returns `Word` object
37
+$singular = $word->singular; // Returns `Word` object
38
```
39
40
Most methods will return an array of `Word` objects, unless specified otherwise.
0 commit comments