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 f651583 commit ac804fcCopy full SHA for ac804fc
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