From 43c75b68530e0c1c741de6f877c43ac54b0ec75d Mon Sep 17 00:00:00 2001 From: Pavel Soldatov <80415302+pavsoldatov@users.noreply.github.com> Date: Mon, 8 Jul 2024 00:52:54 +0300 Subject: [PATCH] Update README.md Typo at `randomAnnulusPoint()` example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59b6ea5..ab2ca97 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Outputs a Point ( `{ latitude: ..., longitude: ... }`) of random coordinates in Function definition: ```js -const randomCircumferencePoint= (centerPoint, radius, randomFn = Math.random) => { ... } +const randomAnnulusPoint = (centerPoint, innerRadius, outerRadius, randomFn = Math.random) => { ... } ``` Where: