From 5bfa2123a74351fe8dee5efff8448abcde975260 Mon Sep 17 00:00:00 2001
From: David Qian <47909356+diskualified@users.noreply.github.com>
Date: Sat, 9 Jul 2022 04:00:27 -0400
Subject: [PATCH] fix(curriculum): typos in rosetta code (#46820)
Update rosetta code doc
---
.../10-coding-interview-prep/rosetta-code/cramers-rule.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cramers-rule.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cramers-rule.md
index 765d532a945..91948abccf7 100644
--- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cramers-rule.md
+++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/cramers-rule.md
@@ -8,9 +8,9 @@ dashedName: cramers-rule
# --description--
-Cramer's rule is a formula for solving a system of linear equations by using the determinants of matrixes formed from subsets of the coefficients and right hand side values.
+Cramer's rule is a formula for solving a system of linear equations by using the determinants of matrices formed from subsets of the coefficients and right hand side values.
-The determinate of a matrix with 2 rows and two columns is given by:
+The determinant of a matrix with 2 rows and two columns is given by:
$\begin{aligned}|A|={\begin{vmatrix}a&b\\\c&d\end{vmatrix}}=ad-bc.\end{aligned}$