Camel case various core constructors

This commit is contained in:
Brian Anderson
2012-08-27 14:22:25 -07:00
parent 4ba9fdd362
commit 161a82e433
113 changed files with 530 additions and 545 deletions

View File

@@ -4,7 +4,7 @@
*/
import core::option;
import core::option::{Some, None};
import dvec::{DVec, dvec};
import dvec::DVec;
import map::map;
// FIXME (#2347): Should not be @; there's a bug somewhere in rustc that
@@ -17,7 +17,7 @@ enum smallintmap<T:copy> {
/// Create a smallintmap
fn mk<T: copy>() -> smallintmap<T> {
let v = dvec();
let v = DVec();
return smallintmap_(@{v: v});
}