We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c25b43 + dabaf9e commit 6cf2b60Copy full SHA for 6cf2b60
src/main/scala/stdlib/Objects.scala
@@ -75,7 +75,7 @@ object Objects extends FlatSpec with Matchers with org.scalaexercises.definition
75
}
76
77
val clark = new Person("Clark Kent", "Superman")
78
- val peter = new Person("Peter Parker", "Spiderman")
+ val peter = new Person("Peter Parker", "Spider-Man")
79
80
Person.showMeInnerSecret(clark) should be(res0)
81
Person.showMeInnerSecret(peter) should be(res1)
src/test/scala/stdlib/ObjectsSpec.scala
@@ -53,7 +53,7 @@ class ObjectsSpec extends Spec with Checkers {
53
check(
54
Test.testSuccess(
55
Objects.privateValuesObjects _,
56
- "Superman" :: "Spiderman" :: HNil
+ "Superman" :: "Spider-Man" :: HNil
57
)
58
59
0 commit comments