about summary refs log tree commit diff
path: root/src/libsyntax/util/parser_testing.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-01 16:15:41 -0700
committerbors <bors@rust-lang.org>2013-09-01 16:15:41 -0700
commit73a28e595c2aacf38c12a56807547e7cda6839ee (patch)
tree7cfb11be2843774595371087f2829d0e2e830fe2 /src/libsyntax/util/parser_testing.rs
parent1f4aba8cbf7caa3a82b52b6f171221ed6067eed5 (diff)
parent857f8673206fd2d8803e02c68cdeb38e26b95df0 (diff)
downloadrust-73a28e595c2aacf38c12a56807547e7cda6839ee.tar.gz
rust-73a28e595c2aacf38c12a56807547e7cda6839ee.zip
auto merge of #8920 : Kimundi/rust/master, r=thestinger
Diffstat (limited to 'src/libsyntax/util/parser_testing.rs')
-rw-r--r--src/libsyntax/util/parser_testing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/util/parser_testing.rs b/src/libsyntax/util/parser_testing.rs
index 9d286f1759e..a421d44e2e3 100644
--- a/src/libsyntax/util/parser_testing.rs
+++ b/src/libsyntax/util/parser_testing.rs
@@ -82,7 +82,7 @@ pub fn string_to_pat(source_str : @str) -> @ast::pat {
 }
 
 // convert a vector of strings to a vector of ast::idents
-pub fn strs_to_idents(ids: ~[&str]) -> ~[ast::ident] {
+pub fn strs_to_idents(ids: ~[&str]) -> ~[ast::Ident] {
     ids.map(|u| token::str_to_ident(*u))
 }