Docs: use consistent kotlinlang.org url in references

This commit is contained in:
Ilya Gorbunov
2019-03-11 19:14:18 +03:00
parent 479e812bbc
commit ffe8b4419c
12 changed files with 33 additions and 132 deletions
@@ -8,7 +8,7 @@ package kotlin.reflect
/**
* Represents a class and provides introspection capabilities.
* Instances of this class are obtainable by the `::class` syntax.
* See the [Kotlin language documentation](http://kotlinlang.org/docs/reference/reflection.html#class-references)
* See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/reflection.html#class-references)
* for more information.
*
* @param T the type of the class.
@@ -10,7 +10,7 @@ package kotlin.reflect
* Represents a property, such as a named `val` or `var` declaration.
* Instances of this class are obtainable by the `::` operator.
*
* See the [Kotlin language documentation](http://kotlinlang.org/docs/reference/reflection.html)
* See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/reflection.html)
* for more information.
*
* @param R the type of the property.