summaryrefslogtreecommitdiff
path: root/src/url.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/url.ml')
-rw-r--r--src/url.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url.ml b/src/url.ml
index 5d36dae..2f3367b 100644
--- a/src/url.ml
+++ b/src/url.ml
@@ -105,7 +105,7 @@ let host_path_matches s =
| host when regex_matches ipv4_addr_format host -> is_ipv4_addr host
| host when regex_matches host_name_format host -> true
| _ -> false
- with Not_found -> false;
+ with Not_found -> false
let validate_uri scheme uri =
if host_path_matches uri then Ok ()