Skip to content

Commit 1df68cf

Browse files
committed
work around another compiler crash
1 parent 48b8259 commit 1df68cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/MarkdownParsing/Parser/SwiftFlavoredMarkdownParser.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ extension SwiftFlavoredMarkdownParser
5353
{
5454
private
5555
func block(
56-
from markup:borrowing any _BlockMarkup,
56+
from markup:/* borrowing */ any _BlockMarkup,
5757
in source:borrowing MarkdownSource) -> Markdown.BlockElement?
5858
{
59-
switch copy markup
59+
switch /* copy */ markup
6060
{
6161
case let block as _BlockQuote:
6262
return Markdown.BlockQuote.init(block.blockChildren.compactMap

0 commit comments

Comments
 (0)