From c05ff5e2dacaa247e65494a1d0f639d0beba31d4 Mon Sep 17 00:00:00 2001 From: Jean Ragouin Date: Mon, 15 Jun 2015 20:12:04 +0800 Subject: [PATCH] Update helpers.md Typo. --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index 1838b57c23e..0b1827e3dc3 100644 --- a/helpers.md +++ b/helpers.md @@ -628,7 +628,7 @@ The `response` function creates a [response](/docs/{{version}}/responses) instan #### `value()` {#collection-method} -The `value` function's behavior will simply return the value it is given. However, if you pass a `Closure` to the function, the `Closure` will be executed the its result will be returned: +The `value` function's behavior will simply return the value it is given. However, if you pass a `Closure` to the function, the `Closure` will be executed then its result will be returned: $value = value(function() { return 'bar'; });