Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 8a0eea7

Browse files
committed
表記の微修正
1 parent dad2eca commit 8a0eea7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ val result: Sample = fastKFunction.generateBucket()
3737
```
3838

3939
## How Fast?
40-
Calling the constructor is more than 1.2 times faster than calling `KFunction` with `call`,
40+
Calling the `constructor` is more than 1.2 times faster than calling `KFunction` with `call`,
4141
and more than 6 times faster than calling it with `callBy`.
4242

4343
You can get the same speed as `reflection` in `Java`.
@@ -104,7 +104,7 @@ Even if the `instance parameter` is not required, passing an `instance parameter
104104
`FastKFunction` supports two major types of calls.
105105

106106
#### Call by vararg or Collection
107-
Calling with `vararg` or `Collection` is faster if you don't need to use the default arguments and
107+
Calling with `vararg` or `Collection` is faster if you don't need to use the `default arguments` and
108108
can get them in the order in which they are defined.
109109

110110
```kotlin
@@ -118,7 +118,7 @@ val result: Sample = fastKFunction.callByCollection(listOf(1, 2, 3, 4, 5))
118118
```
119119

120120
#### Call by ArgumentBucket
121-
If the default argument is expected to be used, a call using `ArgumentBucket` is available.
121+
If the `default argument` is expected to be used, a call using `ArgumentBucket` is available.
122122

123123
`ArgumentBucket` has interfaces like `MutableMap<KParameter, Any?>`, which can be used, for example, as follows.
124124

0 commit comments

Comments
 (0)