diff --git a/Cargo.toml b/Cargo.toml index ca36793f..7e4a46f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "GSL" -version = "7.0.0-rc1" +version = "7.0.0" authors = ["Guillaume Gomez "] description = "A rust binding for the GSL (the GNU scientific library)" repository = "https://github.com/GuillaumeGomez/rust-GSL" diff --git a/src/types/rng.rs b/src/types/rng.rs index 37695b5c..0c139c21 100644 --- a/src/types/rng.rs +++ b/src/types/rng.rs @@ -1063,7 +1063,7 @@ pub mod algorithms { /// /// with coefficients a_1 = 0, a_2 = 63308, a_3 = -183326, b_1 = 86098, b_2 = 0, b_3 = -539608, and moduli m_1 = 2^31 - 1 = 2147483647 and m_2 = 2145483479. /// - //// The period of this generator is lcm(m_1^3-1, m_2^3-1), which is approximately 2^185 (about 10^56). It uses 6 words of state per generator. For more information see, + /// The period of this generator is lcm(m_1^3-1, m_2^3-1), which is approximately 2^185 (about 10^56). It uses 6 words of state per generator. For more information see, /// /// P. L’Ecuyer, “Combined Multiple Recursive Random Number Generators”, Operations Research, 44, 5 (1996), 816–822. #[doc(alias = "gsl_rng_cmrg")]