diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-02-24 20:51:56 -0800 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-02-26 02:14:01 -0800 |
| commit | 28691a0852854a9996d07ab92bb55e92beef2c98 (patch) | |
| tree | f2557892421370abd122c1f881c0847c749a0862 /src/libsyntax/parse/attr.rs | |
| parent | ff36986fa490917bcacfb4e5010e304d5e82f3bb (diff) | |
| download | rust-28691a0852854a9996d07ab92bb55e92beef2c98.tar.gz rust-28691a0852854a9996d07ab92bb55e92beef2c98.zip | |
libsyntax: more minor cleanup
Diffstat (limited to 'src/libsyntax/parse/attr.rs')
| -rw-r--r-- | src/libsyntax/parse/attr.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/attr.rs b/src/libsyntax/parse/attr.rs index bad6c76c36a..56e350db47b 100644 --- a/src/libsyntax/parse/attr.rs +++ b/src/libsyntax/parse/attr.rs @@ -161,8 +161,8 @@ impl parser_attr for Parser { fn parse_optional_meta() -> ~[@ast::meta_item] { match *self.token { - token::LPAREN => return self.parse_meta_seq(), - _ => return ~[] + token::LPAREN => self.parse_meta_seq(), + _ => ~[] } } } |
