diff --git a/docs/docs/reference/other-new-features/indentation.md b/docs/docs/reference/other-new-features/indentation.md index 0b1212a5e647..76ed1dd3680b 100644 --- a/docs/docs/reference/other-new-features/indentation.md +++ b/docs/docs/reference/other-new-features/indentation.md @@ -209,11 +209,11 @@ The rules allow to write `match` expressions where cases are not indented themse ```scala x match - case 1 => print("I") - case 2 => print("II") - case 3 => print("III") - case 4 => print("IV") - case 5 => print("V") +case 1 => print("I") +case 2 => print("II") +case 3 => print("III") +case 4 => print("IV") +case 5 => print("V") println(".") ```