Skip to content

Commit 3e9a9c4

Browse files
IRusEgorand
authored andcommitted
Fix interop-kotlin-metadata API link (#2118)
1 parent da27547 commit 3e9a9c4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/interop-kotlin-metadata.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
KotlinPoet-metadata
22
===================
33

4-
`interop:kotlinx-metadata` is an API for working with Kotlin `@Metadata` annotations. Its API
5-
sits atop [kotlinx-metadata](https://github.com/JetBrains/kotlin/tree/master/libraries/kotlinx-metadata/jvm),
4+
`interop:kotlin-metadata` is an API for working with Kotlin `@Metadata` annotations. Its API
5+
sits atop [kotlin-metadata](https://github.com/JetBrains/kotlin/tree/master/libraries/kotlinx-metadata/jvm),
66
offering extensions for its types + JVM metadata information. This can be used to read
77
Kotlin language semantics off of `Class` or `TypeElement` `@Metadata` annotations.
88

@@ -26,7 +26,7 @@ kmClass.functions.forEach { println(it.name) }
2626
### Flags
2727

2828
There are a number of boolean flags available to types as well under `Flags.kt`. These read the
29-
underlying kotlinx-metadata `Flags` property.
29+
underlying kotlin-metadata `Flags` property.
3030

3131
Using the Taco example above, we can glean certain information:
3232

@@ -37,7 +37,7 @@ println("Is data class? ${kmClass.isData}")
3737

3838
### Interop with KotlinPoet
3939

40-
`interop:kotlinx-metadata` offers an API for converting core kotlinx-metadata `Km` types to
40+
`interop:kotlin-metadata` offers an API for converting core kotlin-metadata `Km` types to
4141
KotlinPoet source representations of their APIs. This includes full type resolution, signatures,
4242
enclosed elements, and general stub source representations of the underlying API.
4343

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ nav:
8383
- 'API':
8484
- 'kotlinpoet': 1.x/kotlinpoet/index.html
8585
- 'interop-javapoet': 1.x/interop-javapoet/index.html
86-
- 'interop-kotlinx-metadata': 1.x/interop-kotlinx-metadata/index.html
86+
- 'interop-kotlin-metadata': 1.x/interop-kotlin-metadata/index.html
8787
- 'interop-ksp': 1.x/interop-ksp/index.html
8888
- 'Stack Overflow ⏏': https://stackoverflow.com/questions/tagged/kotlinpoet?sort=active
8989
- 'Change Log': changelog.md

0 commit comments

Comments
 (0)