Skip to content

Commit

Permalink
fix wrong function name
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioricali committed Aug 3, 2017
1 parent 074e613 commit 0ccc1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asserts/arrays.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Arrays.arrayOfFunctions = (value) => {
* @param value {any} the value of the key that you are looking for
* @returns {*|boolean}
* @example
* be.objValInArray([{ id: 1, name: '...'}], 'id', 1) // true
* be.objValueInArray([{ id: 1, name: '...'}], 'id', 1) // true
*/
Arrays.objValueInArray = (array, key, value) => {
let result = [];
Expand Down

0 comments on commit 0ccc1bc

Please sign in to comment.