Skip to content

Commit 96437b0

Browse files
committed
Formatting
1 parent 8a3f17a commit 96437b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parser/grammar/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn pointer_type(p: &mut Parser) {
7777
// type T = *();
7878
p.error(
7979
"expected mut or const in raw pointer type \
80-
(use `*mut T` or `*const T` as appropriate)"
80+
(use `*mut T` or `*const T` as appropriate)",
8181
);
8282
}
8383
};
@@ -98,7 +98,7 @@ fn array_or_slice_type(p: &mut Parser) {
9898
R_BRACK => {
9999
p.bump();
100100
SLICE_TYPE
101-
},
101+
}
102102

103103
// test array_type
104104
// type T = [(); 92];

0 commit comments

Comments
 (0)