Skip to content

Commit 735c4a5

Browse files
authored
Merge pull request #11456 from dotty-staging/fix-indnet-doc
Fix code in indentation code
2 parents 72f1fcf + 53b272e commit 735c4a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/docs/reference/other-new-features/indentation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ The rules allow to write `match` expressions where cases are not indented themse
209209

210210
```scala
211211
x match
212-
case 1 => print("I")
213-
case 2 => print("II")
214-
case 3 => print("III")
215-
case 4 => print("IV")
216-
case 5 => print("V")
212+
case 1 => print("I")
213+
case 2 => print("II")
214+
case 3 => print("III")
215+
case 4 => print("IV")
216+
case 5 => print("V")
217217

218218
println(".")
219219
```

0 commit comments

Comments
 (0)