From 508f27cc32f5927d482015098effdbbad30beb31 Mon Sep 17 00:00:00 2001 From: Teoman Soygul Date: Tue, 10 Mar 2015 14:04:20 +0100 Subject: [PATCH] Fix `_.property` documentation typo. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index c62ae0512..90ea73d4f 100644 --- a/lodash.js +++ b/lodash.js @@ -10783,7 +10783,7 @@ * var getName = _.property('user'); * * _.map(users, getName); - * // => ['fred', barney'] + * // => ['fred', 'barney'] * * _.pluck(_.sortBy(users, getName), 'user'); * // => ['barney', 'fred']