Commit b160dc46 authored by Miguel Ojeda's avatar Miguel Ojeda
Browse files

docs: rust: remove spurious item in `expect` list



This list started as a "when to prefer `expect`" list, but at some point
during writing I changed it to a "prefer `expect` unless..." one. However,
the first bullet remained, which does not make sense anymore.

Thus remove it. In addition, fix nearby typo.

Fixes: 04866494 ("Documentation: rust: discuss `#[expect(...)]` in the guidelines")
Reviewed-by: default avatarAlice Ryhl <aliceryhl@google.com>
Reviewed-by: default avatarAndreas Hindborg <a.hindborg@kernel.org>
Link: https://lore.kernel.org/r/20241117133127.473937-1-ojeda@kernel.org


Signed-off-by: default avatarMiguel Ojeda <ojeda@kernel.org>
parent 60fc1e67
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -296,9 +296,7 @@ may happen in several situations, e.g.:
It also increases the visibility of the remaining ``allow``\ s and reduces the
chance of misapplying one.

Thus prefer ``except`` over ``allow`` unless:

- The lint attribute is intended to be temporary, e.g. while developing.
Thus prefer ``expect`` over ``allow`` unless:

- Conditional compilation triggers the warning in some cases but not others.