Skip to content

Commit

Permalink
Add missing space after "Serialized" in StorageLevel
Browse files Browse the repository at this point in the history
Current code creates outputs like:

scala> res0.getStorageLevel.description
res2: String = Serialized1x Replicated
  • Loading branch information
ash211 committed Dec 4, 2013
1 parent d6e5473 commit 2176116
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class StorageLevel private(
var result = ""
result += (if (useDisk) "Disk " else "")
result += (if (useMemory) "Memory " else "")
result += (if (deserialized) "Deserialized " else "Serialized")
result += (if (deserialized) "Deserialized " else "Serialized ")
result += "%sx Replicated".format(replication)
result
}
Expand Down

0 comments on commit 2176116

Please sign in to comment.