diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-07-27 22:23:36 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-07-27 22:23:36 -0700 |
| commit | afe77575259939dbaebb2b02ae4ebab628c611bf (patch) | |
| tree | 0f26be443538c97803e623cfcf6b1efdb7889ecc /src | |
| parent | 93c2f5e0e43532a2288ed6dec378564264d1a77c (diff) | |
libstd: Fix missing export from URL module
Diffstat (limited to 'src')
| -rw-r--r-- | src/libstd/net_url.rs | 4 |
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 +} |
