From cc96b67e4e6fcd830050505dc8b40af12deafe0d Mon Sep 17 00:00:00 2001 From: Alexander Vakrilov Date: Wed, 4 Oct 2017 17:48:03 +0200 Subject: [PATCH] chore(docs): Update method descriptions (#4913) * chore(docs): Update method descriptions * Fix grammar --- tns-core-modules/utils/types.d.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tns-core-modules/utils/types.d.ts b/tns-core-modules/utils/types.d.ts index e006e694d..f79b1e1a0 100644 --- a/tns-core-modules/utils/types.d.ts +++ b/tns-core-modules/utils/types.d.ts @@ -67,21 +67,21 @@ export function verifyCallback(value: any): void; /** * A function that gets the class name of an object. - * @param object The object which class will be get. + * @param object The object. * Returns a string with the name of the class. */ export function getClass(object): string; /** * A function that gets the entire class hierarchy of an object. - * @param object The object which class hierarchy will be get. - * Return an array of strings with the name of all classes. + * @param object The object. + * Returns an array of strings with the name of all base classes. */ export function getBaseClasses(object): Array; /** * A function that gets the ClassInfo for an object. - * @param object The object for which the ClassInfo will be get. + * @param object The object. * Returns a ClassInfo for the object. */ export function getClassInfo(object: Object): ClassInfo; @@ -102,7 +102,7 @@ export class ClassInfo { } /** - * Returns a string representation of a string to be shown in UI. - * @param object The object which class hierarchy will be get. + * Returns a string representation of an object to be shown in UI. + * @param object The object. */ export function toUIString(object): string;