about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/net_url.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/net_url.rs b/src/libstd/net_url.rs
index 712b5124c7f..72282780ef0 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
+}