Fix some problem contents in documentation

This commit is contained in:
2023-01-26 01:50:50 +08:00
parent 48ca18fe39
commit 0b1e078829
15 changed files with 21 additions and 21 deletions

View File

@@ -370,7 +370,7 @@ var isDebug: Boolean
**Function Illustrate**
> 是否启用 DEBUG 模式。
> 是否启用 Debug 模式。
默认为开启状态,开启后模块将会向 `Logcat` 和 (Xposed) 宿主环境中的日志功能打印详细的 Hook 日志,关闭后仅会打印 `E` 级别的日志。
@@ -508,7 +508,7 @@ var isEnableMemberCache: Boolean
启用后会缓存已经找到的 `Method`、`Constructor`、`Field`。
缓存的 `Member` 都将处于 `MemberCacheStore` 的全局静态实例中。
缓存的 `Member` 都将处于 `ReflectsCacheStore` 的全局静态实例中。
推荐使用 `MethodFinder`、`ConstructorFinder`、`FieldFinder` 来获取 `Member`。
@@ -532,7 +532,7 @@ inline fun configs(initiate: Configs.() -> Unit)
> 对 `Configs` 类实现了一个 `lambda` 方法体。
你可以轻松调用它进行配置。
你可以轻松调用它进行配置。
**Function Example**