From 5300433783708ec0e70dfc3a15962e69b6361b6b Mon Sep 17 00:00:00 2001 From: Konstantin Ponomarev <40800751+ponomarevkonst@users.noreply.github.com> Date: Fri, 25 Feb 2022 16:01:51 +0300 Subject: [PATCH] fix: correct link to wikipedia Standard Deviation -> Standard_deviation --- .../rosetta-code/cumulative-standard-deviation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cumulative-standard-deviation.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cumulative-standard-deviation.md index 4ca5496cb7..c3eac32fe9 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cumulative-standard-deviation.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cumulative-standard-deviation.md @@ -8,7 +8,7 @@ dashedName: cumulative-standard-deviation # --description-- -Write a function that takes an array of numbers as parameter and returns the [standard deviation]() of the series. +Write a function that takes an array of numbers as parameter and returns the [standard deviation]() of the series. # --hints--