From a3087cfa86340a546cd06c2fe2a551cd4508d928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Sun, 28 Jul 2024 17:31:07 +0200 Subject: [PATCH] Spelling --- src/accurate/dw0c.rs | 2 +- src/accurate/dwm1c.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accurate/dw0c.rs b/src/accurate/dw0c.rs index 2593501..144040b 100644 --- a/src/accurate/dw0c.rs +++ b/src/accurate/dw0c.rs @@ -5,7 +5,7 @@ use crate::LambertW0Error; /// 50-bit accuracy computation of principal branch of Lambert W function, W_0(z), /// by piecewise minimax rational function approximation /// -/// NOTICE: Input arguement is NOT z but its complement defined as zc = z+1/e +/// NOTICE: Input argument is NOT z but its complement defined as zc = z+1/e /// /// Created by T. Fukushima , /// ported to Rust by Johanna Sörngård diff --git a/src/accurate/dwm1c.rs b/src/accurate/dwm1c.rs index c69554d..3a3a5ef 100644 --- a/src/accurate/dwm1c.rs +++ b/src/accurate/dwm1c.rs @@ -6,7 +6,7 @@ use crate::{LambertWm1Error, LambertWm1ErrorReason}; /// 50-bit accuracy computation of secondary branch of Lambert W function, W_-1(z), /// by piecewise minimax rational function approximation /// -/// NOTICE: Required are two input arguements z and its complement defined as zc = z+1/e +/// NOTICE: Required are two input arguments: z and its complement defined as zc = z+1/e /// /// Created by T. Fukushima , /// ported to Rust by Johanna Sörngård