about summary refs log tree commit diff
path: root/src/libextra/net_url.rs
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-06-10 23:25:25 +1000
committerHuon Wilson <dbau.pp+github@gmail.com>2013-06-10 23:57:03 +1000
commitccd0ac59e9a918f3c2a174e31213286dc6867d37 (patch)
tree613e9e26394be216bfb2dc56dba0391ca6486545 /src/libextra/net_url.rs
parent5a711ea7c317ea90f03d5118dbb2e19e1622bc29 (diff)
std: remove str::{connect,concat}*.
Diffstat (limited to 'src/libextra/net_url.rs')
-rw-r--r--src/libextra/net_url.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/net_url.rs b/src/libextra/net_url.rs
index 30d55721efb..46e76a7a399 100644
--- a/src/libextra/net_url.rs
+++ b/src/libextra/net_url.rs
@@ -354,7 +354,7 @@ pub fn query_to_str(query: &Query) -> ~str {
             }
         }
     }
-    return str::connect(strvec, "&");
+    return strvec.connect("&");
 }
 
 // returns the scheme and the rest of the url, or a parsing error