Skip to content

Commit 6b744b2

Browse files
committed
remove extra trailing semicolon
1 parent ba6da95 commit 6b744b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/syntax/parse/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ fn parse_fn_expr(p: parser, kw: fn_kw) -> @ast::expr {
13571357
(fn_kw_fn., true) { ast::proto_bare }
13581358
(fn_kw_fn_at., true) { ast::proto_send }
13591359
(fn_kw_lambda., true) { ast::proto_send }
1360-
(fn_kw_block., true) { p.fatal("block cannot be declared sendable"); }
1360+
(fn_kw_block., true) { p.fatal("block cannot be declared sendable") }
13611361
(fn_kw_fn., false) { ast::proto_bare }
13621362
(fn_kw_fn_at., false) { ast::proto_shared(ast::sugar_normal) }
13631363
(fn_kw_lambda., false) { ast::proto_shared(ast::sugar_sexy) }

0 commit comments

Comments
 (0)