Skip to content

Commit

Permalink
improve wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Expander committed Nov 21, 2023
1 parent f5134e6 commit 83b4f67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ println!("Li_{}({}) = {}", n, z, z.li(n)); // Li_n(z)
Notes
-----

The implementation of the real dilogarithm is an adaption of
The implementation of the real dilogarithm is an adaptation of
[[arXiv:2201.01678](https://arxiv.org/abs/2201.01678)].

The implementation of the complex dilogarithm has been inspired by the
Expand All @@ -55,7 +55,7 @@ The implementation of the real trilogarithm is an adaptation of
[[arXiv:2308.11619](https://arxiv.org/abs/2308.11619)].

The implementation of the general n-th order polylogarithm is an
adaption of [[arXiv:2010.09860](https://arxiv.org/abs/2010.09860)].
adaptation of [[arXiv:2010.09860](https://arxiv.org/abs/2010.09860)].


Copying
Expand Down
4 changes: 2 additions & 2 deletions src/li.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl Li<Complex<f64>> for Complex<f64> {
/// Returns the complex n-th order polylogarithm of a complex
/// number of type `Complex<f64>` for all integers `n`.
///
/// The implementation for `n < 0` is an adaption of
/// The implementation for `n < 0` is an adaptation of
/// [[arxiv:2010.09860]].
///
/// [arxiv:2010.09860]: https://arxiv.org/abs/2010.09860
Expand All @@ -38,7 +38,7 @@ impl Li<f64> for f64 {
/// Returns the real n-th order polylogarithm of a real number of
/// type `f64` for all integers `n`.
///
/// The implementation for `n < 0` is an adaption of
/// The implementation for `n < 0` is an adaptation of
/// [[arxiv:2010.09860]].
///
/// [arxiv:2010.09860]: https://arxiv.org/abs/2010.09860
Expand Down

0 comments on commit 83b4f67

Please sign in to comment.