Skip to content

Commit

Permalink
Fix wrong return type (#63)
Browse files Browse the repository at this point in the history
Co-authored-by: Dragonchu <[email protected]>
  • Loading branch information
Dragonchu and Dragonchu authored Dec 19, 2024
1 parent 9a01cb2 commit 6104c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion booksrc/chapter-simple-bump.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl BumpBlock {
None
} else {
self.cursor = next_ptr as *const u8;
Some(next_ptr)
Some(next_ptr as *const u8)
}
}
}
Expand Down

0 comments on commit 6104c3d

Please sign in to comment.