Skip to content

Commit 8c92ee1

Browse files
committed
Fix postfixOps usages in build
1 parent 740ac67 commit 8c92ee1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/test/dotty/tools/repl/TabcompleteTests.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class TabcompleteTests extends ReplTest {
176176
| case dot_product_*
177177
| case __system
178178
|
179-
|Foo."""stripMargin))
179+
|Foo.""".stripMargin))
180180
}
181181

182182

@@ -192,7 +192,7 @@ class TabcompleteTests extends ReplTest {
192192
| case dot_product_*
193193
| case __system
194194
|
195-
|Foo.`bac"""stripMargin))
195+
|Foo.`bac""".stripMargin))
196196
}
197197

198198
@Test def commands = initially {

scaladoc/src/dotty/tools/scaladoc/tasty/comments/wiki/Parser.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ final class Parser(
461461
stack.length > 0 && char != endOfText
462462
}) do {}
463463

464-
list mkString
464+
list.mkString
465465
}
466466

467467
def getInline(isInlineEnd: => Boolean, textTransform: String => String = identity): Inline = {

0 commit comments

Comments
 (0)