Skip to content

Commit

Permalink
Remove comma for better flow (#39)
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 0d7f649 commit bb4ac29
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 @@ -11,7 +11,7 @@ secondary branches of the [Lambert W function](https://en.wikipedia.org/wiki/Lam
with the method of Toshio Fukushima \[[1](#references)\].

This method is not an iterative procedure, it does not allocate memory and
uses no recursion or loops, other than what might already exist in the logarithm,
uses no recursion or loops other than what might already exist in the logarithm,
square root, or division implementations on your platform.
Instead it works by splitting the domain of the function into subdomains,
and on each subdomain it uses a rational function
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! with the method of Toshio Fukushima \[[1](#references)\].
//!
//! This method is not an iterative procedure, it does not allocate memory and
//! uses no recursion or loops, other than what might already exist in the logarithm,
//! uses no recursion or loops other than what might already exist in the logarithm,
//! square root, or division implementations on your platform.
//! Instead it works by splitting the domain of the function into subdomains,
//! and on each subdomain it uses a rational function evaluated on a simple transformation of
Expand Down

0 comments on commit bb4ac29

Please sign in to comment.