Skip to content

Commit

Permalink
Merge pull request #1397 from google/doc-comment-missing-space
Browse files Browse the repository at this point in the history
Add missing space on doc comment.
  • Loading branch information
adetaylor authored Sep 23, 2024
2 parents 48c74b6 + 3dcbc84 commit 258f65a
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 258f65a

Please sign in to comment.