Fix "Koltin" typos throughout codebase (#3383)
* Fix "Koltin" typos throughout codebase * Update K2MetadataKlibSerializer.kt
This commit is contained in:
@@ -85,7 +85,7 @@ open class BaseWriterImpl(
|
||||
/**
|
||||
* Requires non-null [target].
|
||||
*/
|
||||
class KoltinLibraryWriterImpl(
|
||||
class KotlinLibraryWriterImpl(
|
||||
libDir: File,
|
||||
moduleName: String,
|
||||
versions: KotlinLibraryVersioning,
|
||||
@@ -103,7 +103,7 @@ class KoltinLibraryWriterImpl(
|
||||
|
||||
) : BaseWriter by base, MetadataWriter by metadata, IrWriter by ir, KotlinLibraryWriter
|
||||
|
||||
fun buildKoltinLibrary(
|
||||
fun buildKotlinLibrary(
|
||||
linkDependencies: List<KotlinLibrary>,
|
||||
metadata: SerializedMetadata,
|
||||
ir: SerializedIrModule?,
|
||||
@@ -117,7 +117,7 @@ fun buildKoltinLibrary(
|
||||
nativeTargets: List<String> = emptyList()
|
||||
): KotlinLibraryLayout {
|
||||
|
||||
val library = KoltinLibraryWriterImpl(File(output), moduleName, versions, builtInsPlatform, nativeTargets, nopack)
|
||||
val library = KotlinLibraryWriterImpl(File(output), moduleName, versions, builtInsPlatform, nativeTargets, nopack)
|
||||
|
||||
library.addMetadata(metadata)
|
||||
|
||||
@@ -139,4 +139,4 @@ enum class BuiltInsPlatform {
|
||||
companion object {
|
||||
fun parseFromString(name: String): BuiltInsPlatform? = values().firstOrNull { it.name == name }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user