Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 98db640

Browse filesBrowse files
committed
Fix documentation
1 parent 6969986 commit 98db640
Copy full SHA for 98db640

1 file changed

+7-7Lines changed: 7 additions & 7 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎src/lib/es6.d.ts‎

Copy file name to clipboardExpand all lines: src/lib/es6.d.ts
+7-7Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.