From 53b272eb6ea7ed4a733de9665aa64646f2f623fa Mon Sep 17 00:00:00 2001 From: Liu Fengyun Date: Thu, 18 Feb 2021 12:32:24 +0100 Subject: [PATCH] Fix code in indentation code --- docs/docs/reference/other-new-features/indentation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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(".") ```