Remove an extraneous space.

This commit is contained in:
Bonnie 2014-11-06 18:47:38 -08:00
parent af29a504c0
commit a32a8e1401

View File

@ -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 = {