diff --git a/cheatsheets/index.md b/cheatsheets/index.md
index 6cbc9b512e..da4f15c2b9 100644
--- a/cheatsheets/index.md
+++ b/cheatsheets/index.md
@@ -66,7 +66,7 @@ languages: [ba, fr, ja, pt-br]
| Good
`val v42 = 42`
`Some(3) match {`
`` case Some(`v42`) => println("42")``
`case _ => println("Not 42")`
`}` | "\`v42\`" with backticks is interpreted as the existing val `v42`, and "Not 42" is printed. |
| Good
`val UppercaseVal = 42`
`Some(3) match {`
` case Some(UppercaseVal) => println("42")`
` case _ => println("Not 42")`
`}` | `UppercaseVal` is treated as an existing val, rather than a new pattern variable, because it starts with an uppercase letter. Thus, the value contained within `UppercaseVal` is checked against `3`, and "Not 42" is printed. |
| object orientation | |
-| `class C(x: R)` _same as_
`class C(private val x: R)`
`var c = new C(4)` | constructor params - private |
+|
`class C(private val x: R)`
`var c = new C(4)` | constructor params - private |
| `class C(val x: R)`
`var c = new C(4)`
`c.x` | constructor params - public |
| `class C(var x: R) {`
`assert(x > 0, "positive please")`
`var y = x`
`val readonly = 5`
`private var secret = 1`
`def this = this(42)`
`}`|
constructor is class body
declare a public member
declare a gettable but not settable member
declare a private member
alternative constructor|
| `new{ ... }` | anonymous class |