From 6e006f9cb1c2e89f0e3a10296ed9a10e0ac465c0 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 19 Feb 2019 21:45:38 +0100 Subject: [PATCH] Issue #644: Add documentation related to the new unwrap mutator ucwords. (#119) --- src/guide/mutators.md | 1 + src/guide/profiles.md | 1 + 2 files changed, 2 insertions(+) diff --git a/src/guide/mutators.md b/src/guide/mutators.md index afaf65a5..a116f46f 100644 --- a/src/guide/mutators.md +++ b/src/guide/mutators.md @@ -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 diff --git a/src/guide/profiles.md b/src/guide/profiles.md index 661016ca..6357cf94 100644 --- a/src/guide/profiles.md +++ b/src/guide/profiles.md @@ -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`