File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -316,7 +316,11 @@ impl Renderer {
316
316
title,
317
317
max_line_num_len,
318
318
title_style,
319
- matches ! ( peek, Some ( Element :: Title ( _) | Element :: Message ( _) ) ) ,
319
+ matches ! (
320
+ peek,
321
+ Some ( Element :: Title ( _) | Element :: Message ( _) )
322
+ | Some ( Element :: Padding ( _) )
323
+ ) ,
320
324
buffer_msg_line_offset,
321
325
) ;
322
326
last_was_suggestion = false ;
Original file line number Diff line number Diff line change @@ -3076,7 +3076,7 @@ LL │ match fut.as_mut().poll(ctx) {
3076
3076
│ ━━━━ method not found in `Pin<&mut impl Future<Output = ()>>`
3077
3077
╭▸ $SRC_DIR/core/src/future/future.rs:104:7
3078
3078
│
3079
- ╰ note: the method is available for `Pin<&mut impl Future<Output = ()>>` here
3079
+ ├ note: the method is available for `Pin<&mut impl Future<Output = ()>>` here
3080
3080
│
3081
3081
╰ help: items from traits can only be used if the trait is in scope
3082
3082
help: trait `Future` which provides `poll` is implemented but not in scope; perhaps you want to import it
@@ -3250,7 +3250,7 @@ LL │ #[derive(Eqr)]
3250
3250
│ ━━━ help: a derive macro with a similar name exists: `Eq`
3251
3251
╭▸ $SRC_DIR/core/src/cmp.rs:356:0
3252
3252
│
3253
- ╰ note: similarly named derive macro `Eq` defined here
3253
+ ├ note: similarly named derive macro `Eq` defined here
3254
3254
│
3255
3255
╰ note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
3256
3256
"# ] ] ;
You can’t perform that action at this time.
0 commit comments