Minor: spelling fixes in javadocs

This commit is contained in:
Dmitry Savvinov
2018-07-06 13:22:52 +03:00
committed by Dmitry Savvinov
parent 99a71b9ecc
commit 63202fe560
2 changed files with 2 additions and 2 deletions
@@ -15,7 +15,7 @@ enum class LanguageFeature(
val sinceApiVersion: ApiVersion = ApiVersion.KOTLIN_1_0,
val hintUrl: String? = null,
val defaultState: State = State.ENABLED,
val kind: Kind = OTHER // NB: default value OTHER doesn't forces pre-releaseness (see KDoc)
val kind: Kind = OTHER // NB: default value OTHER doesn't force pre-releaseness (see KDoc)
) {
// Note: names of these entries are also used in diagnostic tests and in user-visible messages (see presentableText below)
TypeAliases(KOTLIN_1_1),
@@ -31,7 +31,7 @@ interface ResolutionScope {
/**
* Returns contributed classifier, but discriminates deprecated
*
* This method can return some classifier where [getContributedClassifier] haven't returned none,
* This method can return some classifier where [getContributedClassifier] haven't returned any,
* but it should never return different one, even if it is deprecated.
* Note that implementors are encouraged to provide non-deprecated classifier if it doesn't contradict
* contract above.