diff options
| -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) | 
