File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ macro_rules! deserialize_num {
50
50
51
51
visitor. $visit( value)
52
52
}
53
- }
53
+ } ;
54
54
}
55
55
56
56
impl < ' de > serde:: Deserializer < ' de > for EscapedDeserializer {
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ macro_rules! deserialize_type {
247
247
248
248
visitor. $visit( value)
249
249
}
250
- }
250
+ } ;
251
251
}
252
252
253
253
impl < ' de , ' a , R : BufRead > de:: Deserializer < ' de > for & ' a mut Deserializer < R > {
Original file line number Diff line number Diff line change @@ -146,9 +146,9 @@ impl<W: Write> Writer<W> {
146
146
Ok ( wrote + self . write ( before) ? + self . write ( value) ? + self . write ( after) ?)
147
147
}
148
148
149
- /// Manually write a newline and indentation at the proper level.
150
- ///
151
- /// This can be used when the heuristic to line break and indent after any [Event] apart
149
+ /// Manually write a newline and indentation at the proper level.
150
+ ///
151
+ /// This can be used when the heuristic to line break and indent after any [Event] apart
152
152
/// from [Text] fails such as when a [Start] occurs directly after [Text].
153
153
/// This method will do nothing if `Writer` was not constructed with `new_with_indent`.
154
154
///
@@ -166,7 +166,6 @@ impl<W: Write> Writer<W> {
166
166
}
167
167
Ok ( wrote)
168
168
}
169
-
170
169
}
171
170
172
171
#[ derive( Clone ) ]
You can’t perform that action at this time.
0 commit comments