Skip to content

Commit f1bfcbf

Browse files
authored
fix: Correction in Kotlin overview (#356)
Kotlin has type inference, not dynamic typing.
1 parent 2989556 commit f1bfcbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/programming_resources/shared/installing_kotlin/Installing-Kotlin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ many new features and syntax that can make it easier to write code and less pron
1818
the features of Kotlin include:
1919

2020
* Full interoperability with Java; you can use Java classes and libraries from Kotlin and vice versa.
21-
* Dynamic typing; Kotlin allows you to use dynamic typing when needed, that is, you don't need
21+
* Type inference; Kotlin allows you to use type inference when needed, that is, you don't need
2222
to specify the type of a variable when it can be inferred from the context
2323
(``var myString = "Hi!"``).
2424
* No semicolons; Kotlin does not require semicolons to end statements.

0 commit comments

Comments
 (0)