Skip to content

Commit 9094ff2

Browse files
committed
Fix indentation
1 parent e559755 commit 9094ff2

File tree

1 file changed

+5
-5
lines changed
  • shared/src/test/scala/scala/util/parsing/combinator

1 file changed

+5
-5
lines changed

shared/src/test/scala/scala/util/parsing/combinator/t3212.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import org.junit.Assert.assertEquals
55

66
class t3212 extends RegexParsers {
77

8-
sealed trait BuySell
9-
case object BUY extends BuySell
10-
case object SELL extends BuySell
8+
sealed trait BuySell
9+
case object BUY extends BuySell
10+
case object SELL extends BuySell
1111

12-
def buy_sell: Parser[BuySell] =
13-
"to" ~> "buy" ^^^ BUY |
12+
def buy_sell: Parser[BuySell] =
13+
"to" ~> "buy" ^^^ BUY |
1414
"to" ~> "sell" ^^^ SELL |
1515
failure("buy or sell expected")
1616

0 commit comments

Comments
 (0)