docs(style): optimize symbols

This commit is contained in:
2023-09-23 12:49:35 +08:00
parent 24412eea84
commit 1f1a0b6c11
36 changed files with 70 additions and 70 deletions

View File

@@ -538,7 +538,7 @@ inline fun configs(initiate: Configs.() -> Unit)
**Function Illustrate**
> 对 `Configs` 类实现了一个 `lambda` 方法体。
> 对 `Configs` 类实现了一个 **lambda** 方法体。
你可以轻松地调用它进行配置。

View File

@@ -736,7 +736,7 @@ inline fun result(initiate: Result.() -> Unit): Result
**Function Example**
你可以使用此方法为 `Result` 类创建 `lambda` 方法体。
你可以使用此方法为 `Result` 类创建 **lambda** 方法体。
> The following example

View File

@@ -350,7 +350,7 @@ inline fun result(initiate: Process.() -> Unit): Process
**Function Example**
你可以使用 `lambda` 形式创建 `Result` 类。
你可以使用 **lambda** 形式创建 `Result` 类。
> The following example
@@ -467,7 +467,7 @@ inline fun result(initiate: Result.() -> Unit): Result
**Function Example**
你可以使用 `lambda` 形式创建 `Result` 类。
你可以使用 **lambda** 形式创建 `Result` 类。
> The following example

View File

@@ -352,7 +352,7 @@ inline fun result(initiate: Result.() -> Unit): Result
**Function Example**
你可以使用 `lambda` 形式创建 `Result` 类。
你可以使用 **lambda** 形式创建 `Result` 类。
> The following example

View File

@@ -494,7 +494,7 @@ inline fun result(initiate: Process.() -> Unit): Process
**Function Example**
你可以使用 `lambda` 形式创建 `Result` 类。
你可以使用 **lambda** 形式创建 `Result` 类。
> The following example
@@ -611,7 +611,7 @@ inline fun result(initiate: Result.() -> Unit): Result
**Function Example**
你可以使用 `lambda` 形式创建 `Result` 类。
你可以使用 **lambda** 形式创建 `Result` 类。
> The following example

View File

@@ -536,7 +536,7 @@ inline fun <reified T> classOf(loader: ClassLoader?, initialize: Boolean): Class
**Function Example**
我们要获取一个 `Class` 在 `Kotlin` 下不通过反射时应该这样做。
我们要获取一个 `Class` 在 Kotlin 下不通过反射时应该这样做。
> The following example

View File

@@ -22,7 +22,7 @@ You can use the **Chrome Translation Plugin** to translate entire pages for refe
**Function Illustrate**
> 这是 `YukiHookAPI` 相关 `lambda` 方法的封装类以及部分 API 用法。
> 这是 `YukiHookAPI` 相关 **lambda** 方法的封装类以及部分 API 用法。
## IYukiHookXposedInit.configs <span class="symbol">- ext-method</span>

View File

@@ -412,7 +412,7 @@ fun loadApp(isExcludeSelf: Boolean, vararg hooker: YukiBaseHooker)
> 装载并 Hook 指定、全部包名的 APP。
`name` 为 APP 的包名,后方的两个参数一个可作为 `lambda` 方法体使用,一个可以直接装载子 Hooker。
`name` 为 APP 的包名,后方的两个参数一个可作为 **lambda** 方法体使用,一个可以直接装载子 Hooker。
装载并 Hook 指定、全部包名的 APP。
@@ -422,7 +422,7 @@ fun loadApp(isExcludeSelf: Boolean, vararg hooker: YukiBaseHooker)
**Function Example**
你可以使用 `loadApp` 的 `lambda` 方法体形式或直接装载一个 Hooker。
你可以使用 `loadApp` 的 **lambda** 方法体形式或直接装载一个 Hooker。
> The following example
@@ -507,7 +507,7 @@ fun loadZygote(vararg hooker: YukiBaseHooker)
> 装载 APP Zygote 事件。
方法中的两个参数一个可作为 `lambda` 方法体使用,一个可以直接装载子 Hooker。
方法中的两个参数一个可作为 **lambda** 方法体使用,一个可以直接装载子 Hooker。
## loadSystem <span class="symbol">- method</span>
@@ -535,7 +535,7 @@ fun loadSystem(vararg hooker: YukiBaseHooker)
> 装载并 Hook 系统框架。
方法中的两个参数一个可作为 `lambda` 方法体使用,一个可以直接装载子 Hooker。
方法中的两个参数一个可作为 **lambda** 方法体使用,一个可以直接装载子 Hooker。
## withProcess <span class="symbol">- method</span>
@@ -567,7 +567,7 @@ fun withProcess(name: String, vararg hooker: YukiBaseHooker)
> 装载并 Hook APP 的指定进程。
`name` 为 APP 的进程名称,后方的两个参数一个可作为 `lambda` 方法体使用,一个可以直接装载子 Hooker。
`name` 为 APP 的进程名称,后方的两个参数一个可作为 **lambda** 方法体使用,一个可以直接装载子 Hooker。
## loadHooker <span class="symbol">- method</span>

View File

@@ -18,6 +18,6 @@ You can use the **Chrome Translation Plugin** to translate entire pages for refe
**Function Illustrate**
> 这是一个预置反射类型的常量类,主要为 `Java` 相关基本变量类型的 `Class` 内容,跟随版本更新会逐一进行增加。
> 这是一个预置反射类型的常量类,主要为 Java 相关基本变量类型的 `Class` 内容,跟随版本更新会逐一进行增加。
详情可 [点击这里](https://github.com/fankes/YukiHookAPI/blob/master/yukihookapi-core/src/main/java/com/highcapable/yukihookapi/hook/type/java/VariableTypeFactory.kt) 进行查看。

View File

@@ -1865,7 +1865,7 @@ field {
}
```
Expressing the type of `Boolean::class.javaPrimitiveType` in `Kotlin` is very long and inconvenient.
Expressing the type of `Boolean::class.javaPrimitiveType` in Kotlin is very long and inconvenient.
Therefore, `YukiHookAPI` encapsulates common type calls for developers, including Android related types and Java common types and **primitive type keywords**.