Fix comment about u128-support.

This commit is contained in:
Sean Bowe 2017-10-04 14:09:40 -06:00
parent 931257599d
commit 85b95750e2
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,5 @@
// This library relies on the Rust nightly compiler's `i128_type` feature. // If the "u128-support" feature is enabled, this library can use
// If that's not okay for you, disable the u128-support feature. (Pass // more efficient arithmetic. Only available in the nightly compiler.
// --no-default-features for example.)
#![cfg_attr(feature = "u128-support", feature(i128_type))] #![cfg_attr(feature = "u128-support", feature(i128_type))]
// `clippy` is a code linting tool for improving code quality by catching // `clippy` is a code linting tool for improving code quality by catching