Skip to content

Commit 4a7e6e9

Browse files
committed
Fix CaseObjectHashCode script
1 parent a8823d2 commit 4a7e6e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script/scala/progscala3/objectsystem/hashcode/CaseObjectHashCode.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ println(s"O2: ${O2.hashCode} == ${"O2".hashCode}")
1313
println(s"O3: ${O3.hashCode} != ${"O3".hashCode}")
1414
println(s"O3.O4: ${O3.O4.hashCode} != ${"O3.O4".hashCode}")
1515
println(s"03.04 vs. 04: ${O3.O4.hashCode} == ${"O4".hashCode}")
16-
println(s"03.04 vs. 03: ${O3.O4.hashCode} == ${"O3".hashCode}")
16+
println(s"03.04 vs. 03: ${O3.O4.hashCode} != ${"O3".hashCode}")

0 commit comments

Comments
 (0)