diff --git a/src/libstd/net_url.rs b/src/libstd/net_url.rs index 712b5124c7f7..72282780ef0e 100644 --- a/src/libstd/net_url.rs +++ b/src/libstd/net_url.rs @@ -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 @@ mod tests { assert to_str(result::unwrap(from_str(url))) == url; } -} \ No newline at end of file +}