Skip to content

Commit 22476e3

Browse files
authored
fix: grammar in 03_Variables.md (Kotlin#113)
grammar fix
1 parent b9ad1f8 commit 22476e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/01_introduction/03_Variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ fun main() {
1515
}
1616
```
1717

18-
1. Declares a mutable variable and initializing it.
19-
2. Declares an immutable variable and initializing it.
20-
3. Declares an immutable variable and initializing it without specifying the type. The compiler infers the type `Int`.
18+
1. Declares a mutable variable and initializes it.
19+
2. Declares an immutable variable and initializes it.
20+
3. Declares an immutable variable and initializes it without specifying the type. The compiler infers the type `Int`.
2121

2222
```run-kotlin
2323
fun main() {

0 commit comments

Comments
 (0)