From 0c576c94a7f1bc66271d852eb7ba35f9fc7601a5 Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Wed, 27 May 2015 11:47:22 +0300 Subject: [PATCH] onSetNativeValue description fixed --- ui/core/proxy.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/core/proxy.d.ts b/ui/core/proxy.d.ts index 05b23d877..62d99c376 100644 --- a/ui/core/proxy.d.ts +++ b/ui/core/proxy.d.ts @@ -7,7 +7,7 @@ */ class PropertyMetadata extends dependencyObservable.PropertyMetadata { /** - * Gets or sets a dependencyObservable.PropertyChangedCallback which is used to react after changing value on native side. + * Gets or sets a dependencyObservable.PropertyChangedCallback which is used to set the value on native side. */ public onSetNativeValue: dependencyObservable.PropertyChangedCallback; @@ -17,7 +17,7 @@ * @param options (optional) A value that states how this property affects visual tree. * @param onChanged (optional) A callback function which will be executed when value of the dependency property is changed. * @param onValidateValue (optional) A callback function which will be executed to validate the value of the dependency property. - * @param onSetNativeValue (optional) A callback function which will be executed when value of the native side is changed. + * @param onSetNativeValue (optional) A callback function which will be executed to set the value on native side. */ constructor( defaultValue: any,