diff options
author | Aleksey Kladov <[email protected]> | 2018-02-04 14:06:43 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-02-04 14:06:43 +0000 |
commit | 351107d0b143e2c3497bd0f424f0d76bc51df0c0 (patch) | |
tree | a7759795877d2d5fef25915997c2679af0cd3e94 /src/parser/grammar/items | |
parent | c119e8fd8b0106bb2e031e76ac1be89bd10a0674 (diff) |
Reformat
Diffstat (limited to 'src/parser/grammar/items')
-rw-r--r-- | src/parser/grammar/items/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/grammar/items/mod.rs b/src/parser/grammar/items/mod.rs index 588fca4c6..37f2ab132 100644 --- a/src/parser/grammar/items/mod.rs +++ b/src/parser/grammar/items/mod.rs | |||
@@ -122,7 +122,7 @@ fn item(p: &mut Parser) { | |||
122 | if !p.at(FN_KW) { | 122 | if !p.at(FN_KW) { |
123 | item.abandon(p); | 123 | item.abandon(p); |
124 | p.error().message("expected function").emit(); | 124 | p.error().message("expected function").emit(); |
125 | return | 125 | return; |
126 | } | 126 | } |
127 | fn_item(p); | 127 | fn_item(p); |
128 | FN_ITEM | 128 | FN_ITEM |