From 5c16633175d3655d7af33c2e33cb5a04f6b0431f Mon Sep 17 00:00:00 2001 From: Nico Mandery Date: Wed, 27 Jun 2018 18:34:27 +0200 Subject: [PATCH] fix typos in documentation of JsQualifier annotation (#1733) --- libraries/stdlib/js/src/kotlin/annotations.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/stdlib/js/src/kotlin/annotations.kt b/libraries/stdlib/js/src/kotlin/annotations.kt index 4f993d1dde7..31cfd54384f 100644 --- a/libraries/stdlib/js/src/kotlin/annotations.kt +++ b/libraries/stdlib/js/src/kotlin/annotations.kt @@ -138,10 +138,10 @@ annotation class JsNonModule * The compiler turns references to `external` declarations either to plain unprefixed names (in case of *plain* modules) * or to plain imports. * However, if a JavaScript library provides its declarations in packages, you won't be satisfied with this. - * You can tell the compiler to generate additional prefix before references to `external` declarations using the `@JsQuafier(...)` + * You can tell the compiler to generate additional prefix before references to `external` declarations using the `@JsQualifier(...)` * annotation. * - * Note that a file marked with the `@JsQulifier(...)` annotation can't contain non-`external` declarations. + * Note that a file marked with the `@JsQualifier(...)` annotation can't contain non-`external` declarations. * * Example: *