From f842bc04a12dfe9bd7ec06d48efc407a610e75e0 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Mon, 6 Jun 2022 10:15:10 +0200 Subject: [PATCH] fix(curriculum): external dot product link in CIP (#46322) --- .../10-coding-interview-prep/rosetta-code/dot-product.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/dot-product.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/dot-product.md index 5584a7e26a7..8216fbf04ee 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/dot-product.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/dot-product.md @@ -8,7 +8,7 @@ dashedName: dot-product # --description-- -Create a function, to compute the **[dot product]()**, also known as the **scalar product** of two vectors. +Create a function, to compute the **dot product**, also known as the **scalar product** of two vectors. # --hints--