1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-04-15 11:45:45 -04:00

Merge pull request from jurglic/fix-rand-typo

fix: test name typo
This commit is contained in:
liv 2023-09-18 10:05:37 +02:00 committed by GitHub
commit 2e48fe9cc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ mod tests {
}
#[test]
fn mult_box() {
fn mut_box() {
let mut num: Box<u32> = Box::new(3);
num_sq(&mut num);
assert_eq!(*num, 9);