Rebuild docs and dist.

This commit is contained in:
John-David Dalton
2014-02-11 00:39:05 -08:00
parent 4b448a877c
commit fad43842a4
6 changed files with 51 additions and 51 deletions

View File

@@ -7054,12 +7054,12 @@
* { 'name': 'barney', 'age': 36 }
* ];
*
* var matchAge = _.matches({ 'age': 36 });
* var matchesAge = _.matches({ 'age': 36 });
*
* _.filter(characters, matchAge);
* _.filter(characters, matchesAge);
* // => [{ 'name': 'barney', 'age': 36 }]
*
* _.find(characters, matchAge);
* _.find(characters, matchesAge);
* // => { 'name': 'barney', 'age': 36 }
*/
function matches(source) {