Skip to content

Commit a2f6675

Browse files
committed
Reword "Basic Types" intro to include strings (JetBrains#797)
1 parent e7cb7bf commit a2f6675

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pages/docs/reference/basic-types.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ title: "Basic Types"
77

88
# Basic Types
99

10-
In Kotlin, everything is an object in the sense that we can call member functions and properties on any variable. Some types are built-in, because their implementation is optimized, but to the user they look like ordinary classes. In this section we describe most of these types: numbers, characters, booleans and arrays.
10+
In Kotlin, everything is an object in the sense that we can call member functions and properties on any variable.
11+
Some of the types can have a special internal representation - for example, numbers, characters and booleans can be
12+
represented as primitive values at runtime - but to the user they look like ordinary classes.
13+
In this section we describe the basic types used in Kotlin: numbers, characters, booleans, arrays, and strings.
1114

1215
## Numbers
1316

0 commit comments

Comments
 (0)