diff options
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/format/annotations.md | 4 | ||||
-rw-r--r-- | test/data/format/starProjection.kt | 2 | ||||
-rw-r--r-- | test/data/format/starProjection.md | 2 | ||||
-rw-r--r-- | test/data/format/summarizeSignatures.md | 3 |
4 files changed, 6 insertions, 5 deletions
diff --git a/test/data/format/annotations.md b/test/data/format/annotations.md index caf84084..b898d55c 100644 --- a/test/data/format/annotations.md +++ b/test/data/format/annotations.md @@ -16,11 +16,11 @@ ### Properties -| [x](test/-foo/x) | `inline val x: Int` | +| [x](test/-foo/x) | `val x: Int` | ### Functions -| [bar](test/-foo/bar) | `inline fun bar(noinline notInlined: () -> Unit): Unit` | +| [bar](test/-foo/bar) | `fun bar(notInlined: () -> Unit): Unit` | diff --git a/test/data/format/starProjection.kt b/test/data/format/starProjection.kt index 1532c830..48d53e47 100644 --- a/test/data/format/starProjection.kt +++ b/test/data/format/starProjection.kt @@ -1,3 +1,3 @@ -public inline fun Iterable<*>.containsFoo(element: Any?): Boolean { +public fun Iterable<*>.containsFoo(element: Any?): Boolean { return false } diff --git a/test/data/format/starProjection.md b/test/data/format/starProjection.md index 10114081..d6b5e9e5 100644 --- a/test/data/format/starProjection.md +++ b/test/data/format/starProjection.md @@ -4,5 +4,5 @@ ### Extensions for Iterable -| [containsFoo](test/-iterable/contains-foo) | `inline fun Iterable<*>.containsFoo(element: Any?): Boolean` | +| [containsFoo](test/-iterable/contains-foo) | `fun Iterable<*>.containsFoo(element: Any?): Boolean` | diff --git a/test/data/format/summarizeSignatures.md b/test/data/format/summarizeSignatures.md index 2dcb31a2..b1707f40 100644 --- a/test/data/format/summarizeSignatures.md +++ b/test/data/format/summarizeSignatures.md @@ -15,7 +15,8 @@ ### Functions -| [foo](test/kotlin/foo) | `fun <T> *any_array*<T>.foo(predicate: (T) -> Boolean): Boolean` +| [foo](test/kotlin/foo) | `fun <T> any_array<T>.foo(predicate: (T) -> Boolean): Boolean` + Returns true if foo. | |