From cd63d6401b3e80449f079e7be8912d75239a3744 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Mon, 6 Jun 2022 10:14:06 +0200 Subject: [PATCH] fix(curriculum): external heronian link in CIP (#46363) --- .../10-coding-interview-prep/rosetta-code/heronian-triangles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/heronian-triangles.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/heronian-triangles.md index 7cfd2e6caa7..8ee19e67596 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/heronian-triangles.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/heronian-triangles.md @@ -8,7 +8,7 @@ dashedName: heronian-triangles # --description-- -[Hero's formula]( "wp: Heron's formula") for the area of a triangle given the length of its three sides `a`, `b`, and `c` is given by: +Hero's formula for the area of a triangle given the length of its three sides `a`, `b`, and `c` is given by: $A = \\sqrt{s(s-a)(s-b)(s-c)},$