From 85b95750e2b0ed6cf7288f4ce16d6e0cb060fdaf Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Wed, 4 Oct 2017 14:09:40 -0600 Subject: [PATCH] Fix comment about u128-support. --- src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index c39615c..b02eb2a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,5 @@ -// This library relies on the Rust nightly compiler's `i128_type` feature. -// If that's not okay for you, disable the u128-support feature. (Pass -// --no-default-features for example.) +// If the "u128-support" feature is enabled, this library can use +// more efficient arithmetic. Only available in the nightly compiler. #![cfg_attr(feature = "u128-support", feature(i128_type))] // `clippy` is a code linting tool for improving code quality by catching