File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
clippy_lints/src/functions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ declare_clippy_lint! {
5656
5757declare_clippy_lint ! {
5858 /// **What it does:** Checks for public functions that dereference raw pointer
59- /// arguments but are not marked unsafe.
59+ /// arguments but are not marked ` unsafe` .
6060 ///
6161 /// **Why is this bad?** The function should probably be marked `unsafe`, since
6262 /// for an arbitrary raw pointer, there is no way of telling for sure if it is
@@ -165,7 +165,7 @@ declare_clippy_lint! {
165165declare_clippy_lint ! {
166166 /// **What it does:** Checks for public functions that return a `Result`
167167 /// with an `Err` type of `()`. It suggests using a custom type that
168- /// implements [ `std::error::Error`] .
168+ /// implements `std::error::Error`.
169169 ///
170170 /// **Why is this bad?** Unit does not implement `Error` and carries no
171171 /// further information about what went wrong.
You can’t perform that action at this time.
0 commit comments