chore: syntax error correction in comments for property of View, originX and originY. (#8669)

This commit is contained in:
Chad Zhuang
2020-06-25 07:46:32 +08:00
committed by GitHub
parent 7d364474c2
commit b5b2db9093

View File

@ -368,12 +368,12 @@ export abstract class View extends ViewBase {
automationText: string;
/**
* Gets or sets the X component of the origin point around which the view will be transformed. The deafault value is 0.5 representing the center of the view.
* Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view.
*/
originX: number;
/**
* Gets or sets the Y component of the origin point around which the view will be transformed. The deafault value is 0.5 representing the center of the view.
* Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view.
*/
originY: number;