Skip to content

Commit

Permalink
Issue #644: Add documentation related to the new unwrap mutator ucwor…
Browse files Browse the repository at this point in the history
…ds. (#119)
  • Loading branch information
drupol authored and maks-rafalko committed Feb 19, 2019
1 parent c0ef24f commit 6e006f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/guide/mutators.md
Expand Up @@ -62,6 +62,7 @@ The Unwrap* mutator family will unwrap function parameters.
| UnwrapStrToUpper | `$a = strtoupper('Hello, world!');` | `$a = 'Hello, world!';` |
| UnwrapTrim | `$a = trim(' Hello, world! ');` | `$a = 'Hello, world!';` |
| UnwrapUcFirst | `$a = ucfirst('hello, world!');` | `$a = 'hello, world!';` |
| UnwrapUcWords | `$a = ucwords('hello, world!');` | `$a = 'hello, world!';` |

### Binary Arithmetic

Expand Down
1 change: 1 addition & 0 deletions src/guide/profiles.md
Expand Up @@ -232,6 +232,7 @@ Contains the following mutators:
* [UnwrapStrToUpper](/guide/mutators.html#Unwrap-Function)
* [UnwrapTrim](/guide/mutators.html#Unwrap-Function)
* [UnwrapUcFirst](/guide/mutators.html#Unwrap-Function)
* [UnwrapUcWords](/guide/mutators.html#Unwrap-Function)

### `@zero_iteration`

Expand Down

0 comments on commit 6e006f9

Please sign in to comment.