Fix disambiguation issue (this also happens on master, so might cause a conflict).

This commit is contained in:
Ohad Kammar 2020-05-22 02:01:02 +01:00
parent 47db074863
commit b0cec7dabb

View File

@ -349,7 +349,7 @@ unc = do count (exactly 2) $ match $ PTPunct '\\'
server <- match PTText server <- match PTText
bodySeparator bodySeparator
share <- match PTText share <- match PTText
pure $ UNC server share Text.Parser.Core.pure $ UNC server share
-- Example: \\?\server\share -- Example: \\?\server\share
private private
@ -358,7 +358,7 @@ verbatimUnc = do verbatim
server <- match PTText server <- match PTText
bodySeparator bodySeparator
share <- match PTText share <- match PTText
pure $ UNC server share Text.Parser.Core.pure $ UNC server share
-- Example: C: -- Example: C:
private private