mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 00:31:57 +03:00
Fix disambiguation issue (this also happens on master, so might cause a conflict).
This commit is contained in:
parent
47db074863
commit
b0cec7dabb
@ -349,7 +349,7 @@ unc = do count (exactly 2) $ match $ PTPunct '\\'
|
||||
server <- match PTText
|
||||
bodySeparator
|
||||
share <- match PTText
|
||||
pure $ UNC server share
|
||||
Text.Parser.Core.pure $ UNC server share
|
||||
|
||||
-- Example: \\?\server\share
|
||||
private
|
||||
@ -358,7 +358,7 @@ verbatimUnc = do verbatim
|
||||
server <- match PTText
|
||||
bodySeparator
|
||||
share <- match PTText
|
||||
pure $ UNC server share
|
||||
Text.Parser.Core.pure $ UNC server share
|
||||
|
||||
-- Example: C:
|
||||
private
|
||||
|
Loading…
Reference in New Issue
Block a user