Specification callback code style

This commit is contained in:
2022-05-30 04:52:09 +08:00
parent 4c9cf2b3bd
commit 9f13c1463d
22 changed files with 111 additions and 111 deletions

View File

@@ -529,7 +529,7 @@ inline fun result(initiate: Result.() -> Unit): Result
##### by [method]
```kotlin
inline fun by(initiate: () -> Boolean): Result
inline fun by(condition: () -> Boolean): Result
```
**变更记录**
@@ -543,7 +543,7 @@ inline fun by(initiate: () -> Boolean): Result
#### onHookingFailure [method]
```kotlin
fun onHookingFailure(initiate: (Throwable) -> Unit): Result
fun onHookingFailure(result: (Throwable) -> Unit): Result
```
**变更记录**