From b46d841d8d3dd59d2c156755d6b5cbc0303e1ece Mon Sep 17 00:00:00 2001
From: lizhongyi <lizhongyi@dcloud.io>
Date: Mon, 30 Oct 2023 19:36:47 +0800
Subject: [PATCH] update uts-plugin.md utsioshookclass.md number.md

---
 docs/plugin/uts-plugin.md             |  4 +-
 docs/uts/buildin-object-api/number.md | 62 +++++----------------------
 docs/uts/utsioshookproxy.md           |  3 +-
 3 files changed, 15 insertions(+), 54 deletions(-)

diff --git a/docs/plugin/uts-plugin.md b/docs/plugin/uts-plugin.md
index 481c13ba7..24f3ea30c 100644
--- a/docs/plugin/uts-plugin.md
+++ b/docs/plugin/uts-plugin.md
@@ -636,7 +636,9 @@ export default function getBatteryLevel():number {
 > 此功能在 HBuilderX 3.96+ 版本支持,HBuilderX 3.96 之前的版本不支持。
 
 #### iOS 平台
-    在插件开发过程中,有时我们需要监听 APP 的生命周期函数来完成一些业务逻辑,比如在应用启动时初始化三方 SDK, 在收到推送消息时做消息的处理,在被 url scheme 唤醒时调用指定功能等等。
+
+在插件开发过程中,有时我们需要监听 APP 的生命周期函数来完成一些业务逻辑,比如在应用启动时初始化三方 SDK, 在收到推送消息时做消息的处理,在被 url scheme 唤醒时调用指定功能等等。
+
 在 iOS 平台可以通过自定义 class 遵循 `UTSiOSHookProxy` 协议的方式来实现对应用程序生命周期函数的监听。
 	
 
diff --git a/docs/uts/buildin-object-api/number.md b/docs/uts/buildin-object-api/number.md
index 235b9a73b..11e44ddb4 100644
--- a/docs/uts/buildin-object-api/number.md
+++ b/docs/uts/buildin-object-api/number.md
@@ -3,57 +3,6 @@
 
 Number 对象是经过封装的能让你处理数字值的对象。
 
-## 实例属性
-
-### MAX_VALUE
-
-<!-- UTSJSON.Number.MAX_VALUE.description -->
-
-<!-- UTSJSON.Number.MAX_VALUE.param -->
-
-<!-- UTSJSON.Number.MAX_VALUE.returnValue -->
-
-<!-- UTSJSON.Number.MAX_VALUE.compatibility -->
-
-### MIN_VALUE
-
-<!-- UTSJSON.Number.MIN_VALUE.description -->
-
-<!-- UTSJSON.Number.MIN_VALUE.param -->
-
-<!-- UTSJSON.Number.MIN_VALUE.returnValue -->
-
-<!-- UTSJSON.Number.MIN_VALUE.compatibility -->
-
-### NaN
-
-<!-- UTSJSON.Number.NaN.description -->
-
-<!-- UTSJSON.Number.NaN.param -->
-
-<!-- UTSJSON.Number.NaN.returnValue -->
-
-<!-- UTSJSON.Number.NaN.compatibility -->
-
-### NEGATIVE_INFINITY
-
-<!-- UTSJSON.Number.NEGATIVE_INFINITY.description -->
-
-<!-- UTSJSON.Number.NEGATIVE_INFINITY.param -->
-
-<!-- UTSJSON.Number.NEGATIVE_INFINITY.returnValue -->
-
-<!-- UTSJSON.Number.NEGATIVE_INFINITY.compatibility -->
-
-### POSITIVE_INFINITY
-
-<!-- UTSJSON.Number.POSITIVE_INFINITY.description -->
-
-<!-- UTSJSON.Number.POSITIVE_INFINITY.param -->
-
-<!-- UTSJSON.Number.POSITIVE_INFINITY.returnValue -->
-
-<!-- UTSJSON.Number.POSITIVE_INFINITY.compatibility -->
 
 ## 实例方法
 
@@ -271,6 +220,7 @@ console.log(a.toLong());
 
 <!-- UTSJSON.Number.toUInt8.compatibility -->
 
+## 静态方法
 
 ### from()
 
@@ -280,4 +230,12 @@ console.log(a.toLong());
 
 <!-- UTSJSON.Number.from.returnValue -->
 
-<!-- UTSJSON.Number.from.compatibility -->
\ No newline at end of file
+<!-- UTSJSON.Number.from.compatibility -->
+
+```ts
+let a: Int = 12
+let b = Number.from(a)
+console.log(b);
+// expected output: 12
+
+```
\ No newline at end of file
diff --git a/docs/uts/utsioshookproxy.md b/docs/uts/utsioshookproxy.md
index 1f31bd7ef..6f4aff39d 100644
--- a/docs/uts/utsioshookproxy.md
+++ b/docs/uts/utsioshookproxy.md
@@ -1,7 +1,8 @@
 # UTSiOSHookProxy
 
+应用程序生命周期回调协议,此协议内的所有函数均由 app 调用,开发者可按需实现对应时机的回调函数。具体的使用方法[详见](https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#hooksclass)
 
-## 实例方法
+## 应用程序生命周期回调函数
 
 
 ### onCreate()
-- 
GitLab