File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ impl Debug for NotA<bool> {
6060
6161impl Display for NotA < bool > {
6262 fn fmt ( & self , f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
63- f. write_str ( concat ! ( "not a bool" ) )
63+ f. write_str ( "not a bool" )
6464 }
6565}
6666
@@ -87,7 +87,7 @@ impl Debug for NotA<i64> {
8787
8888impl Display for NotA < i64 > {
8989 fn fmt ( & self , f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
90- f. write_str ( concat ! ( "not an i64" ) )
90+ f. write_str ( "not an i64" )
9191 }
9292}
9393
@@ -114,7 +114,7 @@ impl Debug for NotA<f64> {
114114
115115impl Display for NotA < f64 > {
116116 fn fmt ( & self , f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
117- f. write_str ( concat ! ( "not a f64" ) )
117+ f. write_str ( "not a f64" )
118118 }
119119}
120120
@@ -141,7 +141,7 @@ impl Debug for NotA<String> {
141141
142142impl Display for NotA < String > {
143143 fn fmt ( & self , f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
144- f. write_str ( concat ! ( "not a String" ) )
144+ f. write_str ( "not a String" )
145145 }
146146}
147147
You can’t perform that action at this time.
0 commit comments