From 0bf6319ae9ce424ad47de41bf80b7a9949d4f4ee Mon Sep 17 00:00:00 2001 From: Rohan Talip Date: Sun, 2 Feb 2020 04:56:16 -0800 Subject: [PATCH] Add "number" to "complex" The use of "complex" here is as an adjective, not a noun, so it needs to be used with "number". --- _overviews/tutorials/scala-for-java-programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/tutorials/scala-for-java-programmers.md b/_overviews/tutorials/scala-for-java-programmers.md index 3fa73ffc1b..8072731909 100644 --- a/_overviews/tutorials/scala-for-java-programmers.md +++ b/_overviews/tutorials/scala-for-java-programmers.md @@ -258,7 +258,7 @@ complex numbers. } This `Complex` class takes two arguments, which are the real and -imaginary part of the complex. These arguments must be passed when +imaginary part of the complex number. 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` and `im`, which give access to these two parts.