Skip to content

Commit 258f65a

Browse files
authored
Merge pull request #1397 from google/doc-comment-missing-space
Add missing space on doc comment.
2 parents 48c74b6 + 3dcbc84 commit 258f65a

File tree

1 file changed

+1
-1
lines changed
  • engine/src/conversion/codegen_rs

1 file changed

+1
-1
lines changed

engine/src/conversion/codegen_rs/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ impl<'a> RsCodeGenerator<'a> {
10681068
/// explaining why a given type or function couldn't have bindings
10691069
/// generated.
10701070
fn generate_error_entry(err: ConvertErrorFromCpp, ctx: ErrorContext) -> RsCodegenResult {
1071-
let err = format!("autocxx bindings couldn't be generated: {err}");
1071+
let err = format!(" autocxx bindings couldn't be generated: {err}");
10721072
let (impl_entry, bindgen_mod_item, materialization) = match ctx.into_type() {
10731073
ErrorContextType::Item(id) => (
10741074
// Populate within bindgen mod because impl blocks may attach.

0 commit comments

Comments
 (0)