From 582e27cc40843daa16e47b70a78b0291580130d7 Mon Sep 17 00:00:00 2001 From: asgs Date: Tue, 29 Mar 2016 01:09:12 +0530 Subject: [PATCH] Update scala-for-java-programmers.md Added a backquote for a class name called Complex so as not to confuse it with the adjective complex. --- tutorials/scala-for-java-programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`