diff options
author | Andre Polykanine <ap@oire.me> | 2021-02-06 11:40:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 11:40:56 +0100 |
commit | 110511a10110f96b20f107c078f7d5ef4c01b109 (patch) | |
tree | 89213fd6afbf9cc9303c1c2fa08dafc840a9d99d | |
parent | 5db57517d69198e076f04de0f4a682519fb6922b (diff) | |
parent | 2ff50ccd2c76ec8abda9e3bfc892c2a5cf64fe14 (diff) |
Merge pull request #4104 from tentacleuno/patch-1
[kotlin/en] Typo in comment
-rw-r--r-- | kotlin.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kotlin.html.markdown b/kotlin.html.markdown index 9394cc02..12008074 100644 --- a/kotlin.html.markdown +++ b/kotlin.html.markdown @@ -426,7 +426,7 @@ data class Counter(var value: Int) { operator fun invoke() = println("The value of the counter is $value") } -/* You can also overload operators through an extension methods */ +/* You can also overload operators through extension methods */ // overload -Counter operator fun Counter.unaryMinus() = Counter(-this.value) |