Skip to content

Commit 60cb461

Browse files
committed
Replaced special characters (0x24C8 'circled latin capital letter' and 0x2019 'right single quotation mark') in lodash.d.ts with closest ASCII equivalent characters. Special characters were causing file encoding issues in some IDEs.
1 parent 1400e07 commit 60cb461

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lodash/lodash.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ declare module _ {
9898
**/
9999
interface Support {
100100
/**
101-
* Detect if an arguments objects [[Class]] is resolvable (all but Firefox < 4, IE < 9).
101+
* Detect if an arguments object's [[Class]] is resolvable (all but Firefox < 4, IE < 9).
102102
**/
103103
argsClass: boolean;
104104

@@ -258,7 +258,7 @@ declare module _ {
258258
//_.chunk
259259
interface LoDashStatic {
260260
/**
261-
* Creates an array of elements split into groups the length of size. If collection cant be
261+
* Creates an array of elements split into groups the length of size. If collection can't be
262262
* split evenly, the final chunk will be the remaining elements.
263263
* @param array The array to process.
264264
* @param size The length of each chunk.
@@ -4997,7 +4997,7 @@ declare module _ {
49974997
* @param wait The number of milliseconds to delay.
49984998
* @param options The options object.
49994999
* @param options.leading Specify execution on the leading edge of the timeout.
5000-
* @param options.maxWait The maximum time func is allowed to be delayed before its called.
5000+
* @param options.maxWait The maximum time func is allowed to be delayed before it's called.
50015001
* @param options.trailing Specify execution on the trailing edge of the timeout.
50025002
* @return The new debounced function.
50035003
**/
@@ -5023,7 +5023,7 @@ declare module _ {
50235023
leading?: boolean;
50245024

50255025
/**
5026-
* The maximum time func is allowed to be delayed before its called.
5026+
* The maximum time func is allowed to be delayed before it's called.
50275027
**/
50285028
maxWait?: number;
50295029

@@ -6063,7 +6063,7 @@ declare module _ {
60636063
//_.pairs
60646064
interface LoDashStatic {
60656065
/**
6066-
* Creates a two dimensional array of an objects key-value pairs,
6066+
* Creates a two dimensional array of an object's key-value pairs,
60676067
* i.e. [[key1, value1], [key2, value2]].
60686068
* @param object The object to inspect.
60696069
* @return Aew array of key-value pairs.
@@ -6271,7 +6271,7 @@ declare module _ {
62716271
//_.property
62726272
interface LoDashStatic {
62736273
/**
6274-
* #
6274+
* # S
62756275
* Creates a "_.pluck" style function, which returns the key value of a given object.
62766276
* @param key (string)
62776277
* @return the value of that key on the object
@@ -6343,7 +6343,7 @@ declare module _ {
63436343
* @param options.evaluate The "evaluate" delimiter.
63446344
* @param options.import An object to import into the template as local variables.
63456345
* @param options.interpolate The "interpolate" delimiter.
6346-
* @param sourceURL The sourceURL of the templates compiled source.
6346+
* @param sourceURL The sourceURL of the template's compiled source.
63476347
* @param variable The data object variable name.
63486348
* @return Returns the compiled Lo-Dash HTML template or a TemplateExecutor if no data is passed.
63496349
**/

0 commit comments

Comments
 (0)