about summary refs log tree commit diff
path: root/src/rustc/util/common.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rustc/util/common.rs')
-rw-r--r--src/rustc/util/common.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/util/common.rs b/src/rustc/util/common.rs
index 9c157610777..fc19ce2a215 100644
--- a/src/rustc/util/common.rs
+++ b/src/rustc/util/common.rs
@@ -1,4 +1,4 @@
-use std::map::hashmap;
+use std::map::HashMap;
 use syntax::ast;
 use ast::{ty, pat};
 use syntax::codemap::{span};
@@ -30,7 +30,7 @@ fn indenter() -> _indenter {
     _indenter(())
 }
 
-type flag = hashmap<~str, ()>;
+type flag = HashMap<~str, ()>;
 
 fn field_expr(f: ast::field) -> @ast::expr { return f.node.expr; }