Skip to content

Commit 2fc2a82

Browse files
committed
Fix build.
1 parent 4ea1ae8 commit 2fc2a82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharp.Formatting.Markdown/MarkdownUtils.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ module internal MarkdownUtils =
302302
| OutputBlock(output, kind, count) -> OutputBlock(output, kind, count)
303303
| ListBlock(kind, items, range) -> ListBlock(kind, List.map (mapParagraphs f) items, range)
304304
| QuotedBlock(paragraphs, range) -> QuotedBlock(mapParagraphs f paragraphs, range)
305-
| Span(spans, range) -> Span(mapSpans f spans, range)
305+
| Span(spans, range) -> MarkdownParagraph.Span(mapSpans f spans, range)
306306
| LatexBlock(env, body, range) -> LatexBlock(env, List.map (mapText f) body, range)
307307
| HorizontalRule(character, range) -> HorizontalRule(character, range)
308308
| YamlFrontmatter(lines, range) -> YamlFrontmatter(List.map (mapText f) lines, range)

0 commit comments

Comments
 (0)