libstd: Fix missing export from URL module

This commit is contained in:
Patrick Walton
2012-07-27 22:23:36 -07:00
parent 93c2f5e0e4
commit afe7757525
+2 -2
View File
@@ -1,6 +1,6 @@
//! Types/fns concerning URLs (see RFC 3986)
export url, userinfo, query, from_str, to_str;
export url, userinfo, query, from_str, to_str, get_scheme;
type url = {
scheme: ~str,
@@ -236,4 +236,4 @@ fn test_scheme_host_fragment_only_url_parse_and_format() {
assert to_str(result::unwrap(from_str(url))) == url;
}
}
}