libstd: Fix missing export from URL module
This commit is contained in:
parent
93c2f5e0e4
commit
afe7757525
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue