We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents64e112f +d021c45 commit0ce1282Copy full SHA for 0ce1282
_overviews/tutorials/scala-for-java-programmers.md
@@ -506,7 +506,7 @@ to omit types, and when to specify them explicitly.
506
###Methods without arguments
507
508
A small problem of the methods`re` and`im` is that, in
509
-order to call them, one has to put an empty pair ofparenthesis after
+order to call them, one has to put an empty pair ofparentheses after
510
their name, as the following example shows:
511
512
{% tabs method-call-with-args-demo class=tabs-scala-version %}
@@ -811,7 +811,7 @@ code which typically makes use of these named parts.
811
812
A programmer familiar with the object-oriented paradigm
813
might wonder why define a single function for`eval` outside
814
-the scope of`Tree`, and not make`eval`and abstract method in
+the scope of`Tree`, and not make`eval`an abstract method in
815
`Tree`, providing overrides in each subclass of`Tree`.
816
817
We could have done it actually, it is a choice to make, which has