diff --git a/README.md b/README.md index 2a9c80a..8456d60 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This method uses a piecewise minimax rational function approximation. ## Examples -Evaluate the [Omega constant](https://en.wikipedia.org/wiki/Omega_constant) with the principal branch of the Lambert W function to 50 bits of accuracy: +Compute the value of the [Omega constant](https://en.wikipedia.org/wiki/Omega_constant) with the principal branch of the Lambert W function to 50 bits of accuracy: ```rust use lambert_w::accurate::lambert_w_0; diff --git a/src/lib.rs b/src/lib.rs index 7d2fadd..5c066d0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ //! //! ## Examples //! -//! Evaluate the [Omega constant](https://en.wikipedia.org/wiki/Omega_constant) with the principal branch of the Lambert W function to 50 bits of accuracy: +//! Compute the value of the [Omega constant](https://en.wikipedia.org/wiki/Omega_constant) with the principal branch of the Lambert W function to 50 bits of accuracy: #![cfg_attr( feature = "50bits", doc = r##"