@@ -89,7 +89,7 @@ impl Serializer {
8989 Entry :: ResourceComment ( comment) => self . serialize_free_comment ( comment, "###" ) ,
9090 Entry :: Junk { content } => {
9191 if self . options . with_junk {
92- self . serialize_junk ( content. as_ref ( ) )
92+ self . serialize_junk ( content. as_ref ( ) ) ;
9393 }
9494 }
9595 } ;
@@ -103,7 +103,7 @@ impl Serializer {
103103 }
104104
105105 fn serialize_junk ( & mut self , junk : & str ) {
106- self . writer . write_literal ( junk)
106+ self . writer . write_literal ( junk) ;
107107 }
108108
109109 fn serialize_free_comment < ' s , S : Slice < ' s > > ( & mut self , comment : & Comment < S > , prefix : & str ) {
@@ -232,7 +232,7 @@ impl Serializer {
232232 match expr {
233233 Expression :: Inline ( inline) => self . serialize_inline_expression ( inline) ,
234234 Expression :: Select { selector, variants } => {
235- self . serialize_select_expression ( selector, variants)
235+ self . serialize_select_expression ( selector, variants) ;
236236 }
237237 }
238238 }
@@ -320,7 +320,7 @@ impl Serializer {
320320 fn serialize_variant_key < ' s , S : Slice < ' s > > ( & mut self , key : & VariantKey < S > ) {
321321 match key {
322322 VariantKey :: NumberLiteral { value } | VariantKey :: Identifier { name : value } => {
323- self . writer . write_literal ( value. as_ref ( ) )
323+ self . writer . write_literal ( value. as_ref ( ) ) ;
324324 }
325325 }
326326 }
0 commit comments