Known problems changed

This commit is contained in:
jrqc 2020-08-13 15:21:09 +03:00
parent 65d10c7abf
commit cd6ca72e0e

View file

@ -17,8 +17,7 @@ declare_clippy_lint! {
/// **Why is this bad?** Removing the `return` and semicolon will make the code
/// more rusty.
///
/// **Known problems:** If the computation returning the value borrows a local
/// variable, removing the `return` may run afoul of the borrow checker.
/// **Known problems:** None.
///
/// **Example:**
/// ```rust