Skip to content

Commit 2387c17

Browse files
committed
fix: Escape pipe character in Markdown table
The pipe character in 'function | ... -> ...' was breaking the table formatting. Escaped with backslash to render correctly.
1 parent 939547e commit 2387c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IMPLEMENTATION_STATUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This document tracks the implementation status of F# language features in the tr
2828
| Query expressions `query { ... }` || | LINQ-style queries |
2929
| Object expressions `{ new IFoo with ... }` || `expr.txt:2163` | |
3030
| Lambda expressions `fun x -> x` || `expr.txt:1443` | |
31-
| Function expressions `function | ... -> ...` || `expr.txt:2856` | |
31+
| Function expressions `function \| ... -> ...` || `expr.txt:2856` | |
3232
| Match expressions || `expr.txt:2039` | |
3333
| Try-with/Try-finally || `expr.txt:1883` | |
3434
| If-then-else expressions || `expr.txt:1108` | |

0 commit comments

Comments
 (0)