Skip to content

Commit 0f80c19

Browse files
authored
chore: typo fix in the comment (#2086)
1 parent 80b7742 commit 0f80c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export const createNamespacedHelpers = (namespace) => ({
140140
* normalizeMap([1, 2, 3]) => [ { key: 1, val: 1 }, { key: 2, val: 2 }, { key: 3, val: 3 } ]
141141
* normalizeMap({a: 1, b: 2, c: 3}) => [ { key: 'a', val: 1 }, { key: 'b', val: 2 }, { key: 'c', val: 3 } ]
142142
* @param {Array|Object} map
143-
* @return {Object}
143+
* @return {Array}
144144
*/
145145
function normalizeMap (map) {
146146
if (!isValidMap(map)) {

0 commit comments

Comments
 (0)