From 69cd56357fb1c9de23d1c06913ecfe4f33233fd5 Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 15 Feb 2015 22:42:16 -0800 Subject: [PATCH] Tweak `_.propertyOf` usage example. [ci skip] --- lodash.src.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 0a28cd473..22bc4bfaa 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -10885,9 +10885,9 @@ * @returns {Function} Returns the new function. * @example * - * var object = { 'user': 'fred', 'age': 40, 'active': true }; - * _.map(['active', 'user'], _.propertyOf(object)); - * // => [true, 'fred'] + * var object = { 'user': 'fred', 'age': 40, 'status': 'busy' }; + * _.map(['user', 'status'], _.propertyOf(object)); + * // => ['fred', 'busy'] * * var object = { 'a': 3, 'b': 1, 'c': 2 }; * _.sortBy(['a', 'b', 'c'], _.propertyOf(object));