From a32a8e140153d5ffd341bb38515660f80da37575 Mon Sep 17 00:00:00 2001 From: Bonnie Date: Thu, 6 Nov 2014 18:47:38 -0800 Subject: [PATCH] Remove an extraneous space. --- scala.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scala.html.markdown b/scala.html.markdown index 201a51ab..775956cb 100644 --- a/scala.html.markdown +++ b/scala.html.markdown @@ -279,7 +279,7 @@ val text = if (x == 10) "yeah" else "nope" // Object oriented features // Classname is Dog -class Dog (br: String) { +class Dog(br: String) { var breed: String = br //A method called bark, returning a String def bark: String = {