diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:37:29 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:43:23 -0700 |
| commit | 8ff18acc8221a0157d94cd714b448b6a596fad40 (patch) | |
| tree | eb5182bca0d5687c5fb0c2e2b70897787a01515c /src/libsyntax/ext/pipes/parse_proto.rs | |
| parent | 3f92cf26594d1ddc9a4ff318b48c3b61ac233813 (diff) | |
| download | rust-8ff18acc8221a0157d94cd714b448b6a596fad40.tar.gz rust-8ff18acc8221a0157d94cd714b448b6a596fad40.zip | |
libsyntax: "import" -> "use"
Diffstat (limited to 'src/libsyntax/ext/pipes/parse_proto.rs')
| -rw-r--r-- | src/libsyntax/ext/pipes/parse_proto.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ext/pipes/parse_proto.rs b/src/libsyntax/ext/pipes/parse_proto.rs index c6562b068f3..5c15b616b4a 100644 --- a/src/libsyntax/ext/pipes/parse_proto.rs +++ b/src/libsyntax/ext/pipes/parse_proto.rs @@ -1,9 +1,9 @@ // Parsing pipes protocols from token trees. -import parse::parser; -import parse::token; +use parse::parser; +use parse::token; -import pipec::*; +use pipec::*; trait proto_parser { fn parse_proto(id: ~str) -> protocol; |
