From d92ab9d89ca296a700cb56909b987f61e03ff484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Nam=20Kh=C3=A1nh?= <55955273+khanhkhanhlele@users.noreply.github.com> Date: Wed, 5 Nov 2025 16:56:34 +0700 Subject: [PATCH] chore: fix typos in src/main/java/com/thealgorithms/others/GaussLegendre.java (#7040) Fix typos in src/main/java/com/thealgorithms/others/GaussLegendre.java --- src/main/java/com/thealgorithms/others/GaussLegendre.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/thealgorithms/others/GaussLegendre.java b/src/main/java/com/thealgorithms/others/GaussLegendre.java index b56b51f15..acf76ae3b 100644 --- a/src/main/java/com/thealgorithms/others/GaussLegendre.java +++ b/src/main/java/com/thealgorithms/others/GaussLegendre.java @@ -1,7 +1,7 @@ package com.thealgorithms.others; /** - * Guass Legendre Algorithm ref + * Gauss Legendre Algorithm ref * https://en.wikipedia.org/wiki/Gauss–Legendre_algorithm * * @author AKS1996