Merge pull request #1494 from mathstuf/option-unwrap-used-message

methods: fix the option_unwrap_used message
This commit is contained in:
Martin Carton 2017-01-30 20:38:43 +01:00 committed by GitHub
commit cf5b9cb308

View file

@ -996,7 +996,7 @@ fn lint_unwrap(cx: &LateContext, expr: &hir::Expr, unwrap_args: &[hir::Expr]) {
lint,
expr.span,
&format!("used unwrap() on {} value. If you don't want to handle the {} case gracefully, consider \
using expect() to provide a better panic
using expect() to provide a better panic \
message",
kind,
none_value));