From 96437b050f2743fef2e37eaab7259f2f98f9b473 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sun, 11 Feb 2018 12:58:12 +0300 Subject: Formatting --- src/parser/grammar/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser/grammar/types.rs b/src/parser/grammar/types.rs index ea4df8639..a4967a00a 100644 --- a/src/parser/grammar/types.rs +++ b/src/parser/grammar/types.rs @@ -77,7 +77,7 @@ fn pointer_type(p: &mut Parser) { // type T = *(); p.error( "expected mut or const in raw pointer type \ - (use `*mut T` or `*const T` as appropriate)" + (use `*mut T` or `*const T` as appropriate)", ); } }; @@ -98,7 +98,7 @@ fn array_or_slice_type(p: &mut Parser) { R_BRACK => { p.bump(); SLICE_TYPE - }, + } // test array_type // type T = [(); 92]; -- cgit v1.2.3