Add space between colon and type annotation

Wrapped string in Rust don't require a backslash
This commit is contained in:
Tristian Celestin 2017-02-26 23:07:53 -05:00
parent 75e28610a7
commit 12af338150

View file

@ -89,13 +89,13 @@ declare_lint! {
"calls to `std::mem::forget` with a value that implements Copy"
}
const DROP_REF_SUMMARY:&str = "calls to `std::mem::drop` with a reference instead of an owned value. \
const DROP_REF_SUMMARY: &str = "calls to `std::mem::drop` with a reference instead of an owned value.
Dropping a reference does nothing.";
const FORGET_REF_SUMMARY:&str = "calls to `std::mem::forget` with a reference instead of an owned value. \
const FORGET_REF_SUMMARY: &str = "calls to `std::mem::forget` with a reference instead of an owned value.
Forgetting a reference does nothing.";
const DROP_COPY_SUMMARY:&str = "calls to `std::mem::drop` with a value that implements Copy. \
const DROP_COPY_SUMMARY: &str = "calls to `std::mem::drop` with a value that implements Copy.
Dropping a copy leaves the original intact.";
const FORGET_COPY_SUMMARY:&str = "calls to `std::mem::forget` with a value that implements Copy. \
const FORGET_COPY_SUMMARY: &str = "calls to `std::mem::forget` with a value that implements Copy.
Forgetting a copy leaves the original intact.";
#[allow(missing_copy_implementations)]