Skip to content

Commit

Permalink
Merge pull request rust-lang#1242 from aaarkid/patch-1
Browse files Browse the repository at this point in the history
fix: Revert deref change
  • Loading branch information
shadows-withal authored Oct 26, 2022
2 parents b17295b + 623161e commit 24da5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/conversions/as_ref_mut.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn char_counter<T>(arg: T) -> usize {
arg.as_ref().chars().count()
}

// Squares a number using AsMut. Add the trait bound as is appropriate and
// Squares a number using as_mut(). Add the trait bound as is appropriate and
// implement the function body.
fn num_sq<T>(arg: &mut T) {
???
Expand Down Expand Up @@ -54,7 +54,7 @@ mod tests {
#[test]
fn mult_box() {
let mut num: Box<u32> = Box::new(3);
num_sq(&mut *num);
num_sq(&mut num);
assert_eq!(*num, 9);
}
}

0 comments on commit 24da5b3

Please sign in to comment.