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

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 @@ mod tests {
assert to_str(result::unwrap(from_str(url))) == url;
}
}
}