Skip to content

Commit

Permalink
Clearer sentence structure (#44)
Browse files Browse the repository at this point in the history
* Update README.md

* Update lib.rs
  • Loading branch information
JSorngard authored Dec 13, 2024
1 parent 1a6e829 commit 3d62a75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Fast and accurate evaluation of the real valued parts of the principal and
secondary branches of the [Lambert W function](https://en.wikipedia.org/wiki/Lambert_W_function)
with the method of Toshio Fukushima \[[1](#references)\].

This method is not iterative, and it doesn't allocate memory or use recursion or loops,
This method is not iterative, it doesn't allocate memory, and it doesn't use recursion or loops
except for what might already be included in the implementations of
the logarithm and square root functions.

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! Fast and accurate evaluation of the real valued parts of the principal and secondary branches of the [Lambert W function](https://en.wikipedia.org/wiki/Lambert_W_function)
//! with the method of Toshio Fukushima \[[1](#references)\].
//!
//! This method is not iterative, and it doesn't allocate memory or use recursion or loops,
//! This method is not iterative, it doesn't allocate memory, and it doesn't use recursion or loops
//! except for what might already be included in the implementations of the logarithm and square root functions.
//!
//! Instead it works by dividing the function’s domain into subdomains. For each one,
Expand Down

0 comments on commit 3d62a75

Please sign in to comment.