Skip to content

Commit

Permalink
Add missing space on doc comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
adetaylor committed Sep 23, 2024
1 parent 48c74b6 commit 3dcbc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/conversion/codegen_rs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ impl<'a> RsCodeGenerator<'a> {
/// explaining why a given type or function couldn't have bindings
/// generated.
fn generate_error_entry(err: ConvertErrorFromCpp, ctx: ErrorContext) -> RsCodegenResult {
let err = format!("autocxx bindings couldn't be generated: {err}");
let err = format!(" autocxx bindings couldn't be generated: {err}");
let (impl_entry, bindgen_mod_item, materialization) = match ctx.into_type() {
ErrorContextType::Item(id) => (
// Populate within bindgen mod because impl blocks may attach.
Expand Down

0 comments on commit 3dcbc84

Please sign in to comment.