Skip to content

Commit

Permalink
Adjust the Ω example
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Aug 9, 2024
1 parent 916ad02 commit f28f852
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lambert_w.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ where
/// ```
/// use special::LambertW;
///
/// assert!((1.0.lambert_w0() - 0.5671432904097838).abs() < 1e-15);
/// let Ω = 0.5671432904097838;
/// assert!((1.0.lambert_w0() - Ω).abs() < 1e-15);
/// ```
///
/// This code is based on a [Rust implementation][1] by Johanna Sörngård.
Expand Down

0 comments on commit f28f852

Please sign in to comment.