fixup! Add await_holding_invalid_type lint

This commit is contained in:
Lily Mara 2022-04-18 10:34:17 -07:00
parent ee3ebb35f4
commit a511072c2c

View file

@ -144,20 +144,17 @@ declare_clippy_lint! {
///
/// ### Example
///
/// Strings are, of course, safe to hold across await points. This example
/// exists only to show how this lint might be configured for third-party
/// crates.
///
/// ```toml
/// await-holding-invalid-types = [
/// "std::string::String",
/// "CustomLockType",
/// ]
/// ```
///
/// ```rust
/// # async fn baz() {}
/// struct CustomLockType;
/// async fn foo() {
/// let _x = String::from("hello!");
/// let _x = CustomLockType;
/// baz().await; // Lint violation
/// }
/// ```