File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -219,12 +219,6 @@ impl Renderer {
219
219
self
220
220
}
221
221
222
- /// Override the output style for all other text
223
- pub const fn none ( mut self , style : Style ) -> Self {
224
- self . stylesheet . none = style;
225
- self
226
- }
227
-
228
222
/// Override the output style for [`AnnotationKind::Context`][crate::AnnotationKind::Context]
229
223
pub const fn context ( mut self , style : Style ) -> Self {
230
224
self . stylesheet . context = style;
@@ -242,6 +236,12 @@ impl Renderer {
242
236
self . stylesheet . removal = style;
243
237
self
244
238
}
239
+
240
+ /// Override the output style for all other text
241
+ pub const fn none ( mut self , style : Style ) -> Self {
242
+ self . stylesheet . none = style;
243
+ self
244
+ }
245
245
}
246
246
247
247
/// The character set for rendering for decor
You can’t perform that action at this time.
0 commit comments