From 8ba161463bfabd9b8bf0f00f268b7adc63fec01e Mon Sep 17 00:00:00 2001 From: jdalton Date: Mon, 29 Jun 2015 22:44:30 -0700 Subject: [PATCH] Clarify implicit chaining in the `lodash` docs. [ci skip] --- lodash.src.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 85641617d..73e985bd6 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -848,11 +848,11 @@ /** * Creates a `lodash` object which wraps `value` to enable implicit chaining. * Methods that operate on and return arrays, collections, and functions can - * be chained together. Methods that return a boolean or single value will - * automatically end the chain returning the unwrapped value. Explicit chaining - * may be enabled using `_.chain`. The execution of chained methods is lazy, - * that is, execution is deferred until `_#value` is implicitly or explicitly - * called. + * be chained together. Methods that retrieve a single value or may return a + * primitive value will automatically end the chain returning the unwrapped + * value. Explicit chaining may be enabled using `_.chain`. The execution of + * chained methods is lazy, that is, execution is deferred until `_#value` + * is implicitly or explicitly called. * * Lazy evaluation allows several methods to support shortcut fusion. Shortcut * fusion is an optimization strategy which merge iteratee calls; this can help