Skip to content

Commit 05b31ff

Browse files
committed
fixed spelling of 'license'
1 parent 8ba3856 commit 05b31ff

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

querystring-parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* http://github.com/isaacs/yui3/tree/master/src/querystring/js
99
*
1010
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
11-
* BSD License (see LISENCE.md for info)
11+
* BSD License (see LICENSE.md for info)
1212
*/
1313

1414

querystring-stringify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* http://github.com/isaacs/yui3/tree/master/src/querystring/js
99
*
1010
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
11-
* BSD License (see LISENCE.md for info)
11+
* BSD License (see LICENSE.md for info)
1212
*
1313
*/
1414

querystring.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* http://github.com/isaacs/yui3/tree/master/src/querystring/js
1616
*
1717
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
18-
* BSD License (see LISENCE.md for info)
18+
* BSD License (see LICENSE.md for info)
1919
*
2020
*/
2121

util.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Chad Etzel
66
*
77
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
8-
* BSD License (see LISENCE.md for info)
8+
* BSD License (see LICENSE.md for info)
99
*
1010
*/
1111

@@ -19,11 +19,10 @@ if (!Array.map) {
1919

2020
var res = new Array(len);
2121
var thisp = arguments[2];
22-
for (var i = 0; i < len; i++)
23-
{
24-
if (i in arr)
25-
res[i] = fun.call(thisp, arr[i], i, arr);
26-
}
22+
for (var i = 0; i < len; i++) {
23+
if (i in arr)
24+
res[i] = fun.call(thisp, arr[i], i, arr);
25+
}
2726

2827
return res;
2928
};

0 commit comments

Comments
 (0)