Skip to content

Commit e041088

Browse files
committed
feat: update properties page
1 parent 38c7276 commit e041088

File tree

3 files changed

+395
-113
lines changed

3 files changed

+395
-113
lines changed

docs/topics/basic-types.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[//]: # (title: Basic types)
22

33
In Kotlin, everything is an object in the sense that you can call member functions and properties on any variable.
4-
While certain types have an optimized internal representation as primitive values at runtime (such as numbers, characters, booleans and others),
4+
While certain types have an optimized internal representation as primitive values at runtime (such as numbers, characters, and booleans),
55
they appear and behave like regular classes to you.
66

77
This section describes the basic types used in Kotlin:
@@ -12,12 +12,12 @@ This section describes the basic types used in Kotlin:
1212
* [Strings](strings.md)
1313
* [Arrays](arrays.md)
1414

15-
> [Learn how to perform type checks and casts in Kotlin](typecasts.md).
16-
>
17-
{style="tip"}
18-
1915
To learn about other Kotlin types, such as `Nothing`, `Any`, and `Unit`, look through the Kotlin API reference:
2016

2117
* [`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/)
2218
* [`Nothing`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-nothing.html)
23-
* [`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/)
19+
* [`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/)
20+
21+
> [Learn how to perform type checks and casts in Kotlin](typecasts.md).
22+
>
23+
{style="tip"}

0 commit comments

Comments
 (0)