Skip to content

Commit

Permalink
hashmap: rm linear namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Apr 3, 2013
1 parent 0cc9030 commit 44029a5
Show file tree
Hide file tree
Showing 75 changed files with 925 additions and 929 deletions.
2 changes: 1 addition & 1 deletion doc/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ expression context, the final namespace qualifier is omitted.
Two examples of paths with type arguments:

~~~~
# use core::hashmap::linear::LinearMap;
# use core::hashmap::LinearMap;
# fn f() {
# fn id<T:Copy>(t: T) -> T { t }
type t = LinearMap<int,~str>; // Type arguments used in a type expression
Expand Down
2 changes: 1 addition & 1 deletion doc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@ illegal to copy and pass by value.
Generic `type`, `struct`, and `enum` declarations follow the same pattern:

~~~~
# use core::hashmap::linear::LinearMap;
# use core::hashmap::LinearMap;
type Set<T> = LinearMap<T, ()>;
struct Stack<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/libcore/gc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use io;
use libc::{size_t, uintptr_t};
use option::{None, Option, Some};
use ptr;
use hashmap::linear::LinearSet;
use hashmap::LinearSet;
use stackwalk;
use sys;

Expand Down
Loading

0 comments on commit 44029a5

Please sign in to comment.