We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf1164 commit f33c9cfCopy full SHA for f33c9cf
src/lib.rs
@@ -222,7 +222,7 @@ psm_stack_manipulation! {
222
fn _grow(stack_size: usize, callback: &mut dyn FnMut()) {
223
// Calculate a number of pages we want to allocate for the new stack.
224
// For maximum portability we want to produce a stack that is aligned to a page and has
225
- // a size that's a multiple of page size. Furthermore we want to allocate two extras pages
+ // a size that’s a multiple of page size. Furthermore we want to allocate two extras pages
226
// for the stack guard. To achieve that we do our calculations in number of pages and
227
// convert to bytes last.
228
let page_size = page_size();
0 commit comments