From 98db640a2c7dfe72b5392d7aeeb535264eaaedb1 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Mon, 31 Aug 2015 15:17:02 -0700 Subject: [PATCH] Fix documentation --- src/lib/es6.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib/es6.d.ts b/src/lib/es6.d.ts index d44b6c0f41a..e2b26747516 100644 --- a/src/lib/es6.d.ts +++ b/src/lib/es6.d.ts @@ -125,7 +125,7 @@ interface ObjectConstructor { * Copy the values of all of the enumerable own properties from one or more source objects to a * target object. Returns the target object. * @param target The target object to copy to. - * @param source source objects to copy properties from. + * @param source The source object from which to copy properties. */ assign(target: T, source: U): T & U; @@ -133,8 +133,8 @@ interface ObjectConstructor { * Copy the values of all of the enumerable own properties from one or more source objects to a * target object. Returns the target object. * @param target The target object to copy to. - * @param source1 first source objects to copy properties from. - * @param source2 second source objects to copy properties from. + * @param source1 The first source object from which to copy properties. + * @param source2 The second source object from which to copy properties. */ assign(target: T, source1: U, source2: V): T & U & V; @@ -142,9 +142,9 @@ interface ObjectConstructor { * Copy the values of all of the enumerable own properties from one or more source objects to a * target object. Returns the target object. * @param target The target object to copy to. - * @param source1 first source objects to copy properties from. - * @param source2 second source objects to copy properties from. - * @param source3 second source objects to copy properties from. + * @param source1 The first source object from which to copy properties. + * @param source2 The second source object from which to copy properties. + * @param source3 The third source object from which to copy properties. */ assign(target: T, source1: U, source2: V, source3: W): T & U & V & W; @@ -152,7 +152,7 @@ interface ObjectConstructor { * Copy the values of all of the enumerable own properties from one or more source objects to a * target object. Returns the target object. * @param target The target object to copy to. - * @param sources One or more source objects to copy properties from. + * @param sources One or more source objects from which to copy properties */ assign(target: any, ...sources: any[]): any;