From 29de4ccb548ebf3b3e1dd8f510f3820d83ec2ae6 Mon Sep 17 00:00:00 2001 From: Eli Davis Date: Sun, 18 Feb 2024 13:04:11 -0600 Subject: [PATCH] readme fix --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index f561fba..710c83f 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,7 @@ Collection of **generic, immutable** vector math functions I've written overtime | Log10 | ✅ | ✅ | ✅ | Returns the decimal logarithm for each component | | Exp | ✅ | ✅ | ✅ | Returns e**x, the base-e exponential for each component | | Exp2 | ✅ | ✅ | ✅ | Returns 2**x, the base-2 exponential for each component | -| Expm1 | ✅ | ✅ | ✅ | Returns e**x - 1, the base-e exponential for each component minus 1. It is more accurate than Exp(x) - 1 when the component is near zero - | +| Expm1 | ✅ | ✅ | ✅ | Returns e**x - 1, the base-e exponential for each component minus 1. It is more accurate than Exp(x) - 1 when the component is near zero | ## Example