Skip to content

Commit 083d2e1

Browse files
authored
Fix formatting in about.md for Kotlin number types
1 parent 7a1d11a commit 083d2e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/numbers/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[Numbers][numbers] can be integer, unsigned integer, or floating point types.
66
Each comes in various "sizes", meaning how many bits it needs in memory.
77

8-
Unlike some scripting languages (Ruby, recent versions of Python), each type in Kotlin has a maximum ([`MAX_VALUE`][max_value] and minimum ([`MIN_VALUE`][min_value]) value it can store.
8+
Unlike some scripting languages (Ruby, recent versions of Python), each type in Kotlin has a maximum ([`MAX_VALUE`][max_value]) and minimum ([`MIN_VALUE`][min_value]) value it can store.
99
Assigning larger values will cause ["overflow"][wiki-overflow], causing either an exception (_bad_) or corrupted data (_worse_).
1010

1111
- Integers can be `Byte`, `Short`, `Int` or `Long`, respectively 8, 16, 32 and 64 bits (1, 2 4, 8 bytes).

0 commit comments

Comments
 (0)