Skip to content

Commit afe7757

Browse files
committed
libstd: Fix missing export from URL module
1 parent 93c2f5e commit afe7757

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/net_url.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Types/fns concerning URLs (see RFC 3986)
22
3-
export url, userinfo, query, from_str, to_str;
3+
export url, userinfo, query, from_str, to_str, get_scheme;
44

55
type url = {
66
scheme: ~str,
@@ -236,4 +236,4 @@ mod tests {
236236
assert to_str(result::unwrap(from_str(url))) == url;
237237
}
238238

239-
}
239+
}

0 commit comments

Comments
 (0)