Merge pull request #1242 from aaarkid/patch-1

fix: Revert deref change
This commit is contained in:
liv 2022-10-26 10:44:40 +02:00 committed by GitHub
commit 24da5b358f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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) {
???
@ -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);
}
}