We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ipVFuture
1 parent 5e50f14 commit ec139b3Copy full SHA for ec139b3
dhall/src/Dhall/Parser/Token.hs
@@ -747,7 +747,7 @@ ipLiteral :: Parser Text
747
ipLiteral = "[" <> (ipV6Address <|> ipVFuture) <> "]"
748
749
ipVFuture :: Parser Text
750
-ipVFuture = "v" <> plus (satisfy hexdig) <> "." <> plus (satisfy predicate)
+ipVFuture = ("v" <|> "V") <> plus (satisfy hexdig) <> "." <> plus (satisfy predicate)
751
where
752
predicate c = unreserved c || subDelims c || c == ':'
753
0 commit comments