From 3b1170db84d3f858a5a09b03a59d39983206651e Mon Sep 17 00:00:00 2001 From: wusongqing Date: Thu, 7 Apr 2022 11:38:04 +0800 Subject: [PATCH] updated docs Signed-off-by: wusongqing --- en/application-dev/ability/fa-pageability.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/application-dev/ability/fa-pageability.md b/en/application-dev/ability/fa-pageability.md index f6694c4e27..9d26c220e5 100644 --- a/en/application-dev/ability/fa-pageability.md +++ b/en/application-dev/ability/fa-pageability.md @@ -2,7 +2,7 @@ ## Overview ### Concepts -The Page ability implements the ArkUI and provides the capability of interacting with users. When you create an ability in the integrated development environment (IDE), the IDE automatically creates template code. The capabilities related to the Page ability are implemented through the **featureAbility**, and the lifecycle callbacks are implemented through the callbacks in **app.js/app.ets**. +The Page ability implements the ArkUI and provides the capability of interacting with developers. When you create an ability in the integrated development environment (IDE), the IDE automatically creates template code. The capabilities related to the Page ability are implemented through the **featureAbility**, and the lifecycle callbacks are implemented through the callbacks in **app.js/app.ets**. ### Page Ability Lifecycle @@ -39,11 +39,11 @@ The **launchType** item in the **config.json** file is used to specify the launc | Launch Type | Description |Description | | ----------- | ------- |---------------- | -| stand | Multi-instance | A new instance is started each time an ability starts.| +| standard | Multi-instance | A new instance is started each time an ability starts.| | singleton | Singleton | Only one instance exists in the system. If an instance already exists when an ability is started, that instance is reused.| | specified | Instance-specific| The internal service of an ability determines whether to create multiple instances during running.| -By default, **stand** is used. +By default, **standard** is used. ## Development Guidelines -- GitLab