]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/drop_forget_ref.rs
Auto merge of #96457 - yungkneez:fix-bootstrap, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / clippy_lints / src / drop_forget_ref.rs
index 88c54828da834da3e94ae9d513a76102e1d1f0c9..25014bfa1a5b12595b41415a2010317ac7952143 100644 (file)
 const FORGET_COPY_SUMMARY: &str = "calls to `std::mem::forget` with a value that implements `Copy`. \
                                    Forgetting a copy leaves the original intact";
 const DROP_NON_DROP_SUMMARY: &str = "call to `std::mem::drop` with a value that does not implement `Drop`. \
-                                 Dropping such a type only extends it's contained lifetimes";
+                                 Dropping such a type only extends its contained lifetimes";
 const FORGET_NON_DROP_SUMMARY: &str = "call to `std::mem::forget` with a value that does not implement `Drop`. \
                                    Forgetting such a type is the same as dropping it";