diff --git a/tutorials/scala-for-java-programmers.md b/tutorials/scala-for-java-programmers.md index 1e57e6d02c..93c3c18f1a 100644 --- a/tutorials/scala-for-java-programmers.md +++ b/tutorials/scala-for-java-programmers.md @@ -275,7 +275,7 @@ complex numbers. def im() = imaginary } -This complex class takes two arguments, which are the real and +This `Complex` class takes two arguments, which are the real and imaginary part of the complex. These arguments must be passed when creating an instance of class `Complex`, as follows: `new Complex(1.5, 2.3)`. The class contains two methods, called `re`