Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing space on doc comment. #1397

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading