From 0ac1f244149b9543a471610c8e99b508fd707add Mon Sep 17 00:00:00 2001 From: Eric Camellini Date: Mon, 22 May 2017 17:40:40 +0200 Subject: [PATCH] Fixing typo in Standard Library --- src/main/scala/scalatutorial/sections/StandardLibrary.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/scalatutorial/sections/StandardLibrary.scala b/src/main/scala/scalatutorial/sections/StandardLibrary.scala index b63d9581..20cd6581 100644 --- a/src/main/scala/scalatutorial/sections/StandardLibrary.scala +++ b/src/main/scala/scalatutorial/sections/StandardLibrary.scala @@ -64,7 +64,7 @@ object StandardLibrary extends ScalaTutorialSection { * val nums = 1 :: 2 :: 3 :: 4 :: Nil * }}} * - * Operators ending in “`:`” are also different in the they are seen as method calls of + * Operators ending in “`:`” are also different in the fact that they are seen as method calls of * the ''right-hand'' operand. * * So the expression above is equivalent to: