Skip to content

Commit 4cacc4f

Browse files
committed
Address review comments
1 parent 1695bc4 commit 4cacc4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/size_of_ref.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ impl LateLintPass<'_> for SizeOfRef {
6666
expr.span,
6767
"argument to `std::mem::size_of_val()` is a reference to a reference",
6868
None,
69-
"dereference the argument to `std::mem::size_of_val()` to get the size of the value instead of the generic size of any reference-type",
69+
"dereference the argument to `std::mem::size_of_val()` to get the size of the value instead of the size of the reference-type",
7070
);
7171
}
7272
}

0 commit comments

Comments
 (0)