Skip to content

Commit 98db640

Browse files
committed
Fix documentation
1 parent 6969986 commit 98db640

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/lib/es6.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,34 +125,34 @@ interface ObjectConstructor {
125125
* Copy the values of all of the enumerable own properties from one or more source objects to a
126126
* target object. Returns the target object.
127127
* @param target The target object to copy to.
128-
* @param source source objects to copy properties from.
128+
* @param source The source object from which to copy properties.
129129
*/
130130
assign<T, U>(target: T, source: U): T & U;
131131

132132
/**
133133
* Copy the values of all of the enumerable own properties from one or more source objects to a
134134
* target object. Returns the target object.
135135
* @param target The target object to copy to.
136-
* @param source1 first source objects to copy properties from.
137-
* @param source2 second source objects to copy properties from.
136+
* @param source1 The first source object from which to copy properties.
137+
* @param source2 The second source object from which to copy properties.
138138
*/
139139
assign<T, U, V>(target: T, source1: U, source2: V): T & U & V;
140140

141141
/**
142142
* Copy the values of all of the enumerable own properties from one or more source objects to a
143143
* target object. Returns the target object.
144144
* @param target The target object to copy to.
145-
* @param source1 first source objects to copy properties from.
146-
* @param source2 second source objects to copy properties from.
147-
* @param source3 second source objects to copy properties from.
145+
* @param source1 The first source object from which to copy properties.
146+
* @param source2 The second source object from which to copy properties.
147+
* @param source3 The third source object from which to copy properties.
148148
*/
149149
assign<T, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
150150

151151
/**
152152
* Copy the values of all of the enumerable own properties from one or more source objects to a
153153
* target object. Returns the target object.
154154
* @param target The target object to copy to.
155-
* @param sources One or more source objects to copy properties from.
155+
* @param sources One or more source objects from which to copy properties
156156
*/
157157
assign(target: any, ...sources: any[]): any;
158158

0 commit comments

Comments
 (0)