Skip to content

Commit cbc4950

Browse files
committed
Fix CI
1 parent 42e78d0 commit cbc4950

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

feather/blocks/generator/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,8 @@ fn generate_block_fns(blocks: &Blocks) -> TokenStream {
369369
}
370370

371371
for (name, value) in default_state {
372-
doc.push_str(&format!("* `{}`: {}\n", name, value));
372+
use core::fmt::Write as _;
373+
let _ = writeln!(doc, "* `{}`: {}", name, value);
373374
}
374375

375376
fns.push(quote! {

quill/common/src/component.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ pod_component_impl!(Position);
327327

328328
/**
329329
If you are using this macro and you get the error:
330-
```
330+
```norun
331331
error[E0599]: no variant or associated item named `...` found for enum `HostComponent` in the current scope.
332332
```
333333
Then you need to go to the top of the file were this macro is defined. There you find the HostCompoent enum, that

0 commit comments

Comments
 (0)