From 94fd20e86403174937a60d92e18d0bd00a87cb4e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 10 Dec 2014 23:14:52 -0800 Subject: [PATCH] Minor `lodash` doc nit. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 8cd33dc2d..75809a729 100644 --- a/lodash.js +++ b/lodash.js @@ -1018,7 +1018,7 @@ * 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 by using `_.chain`. The execution of chained methods is lazy, + * may be enabled using `_.chain`. The execution of chained methods is lazy, * that is, execution is deferred until `_#value` is implicitly or explicitly * called. *