diff --git a/guide/english/algorithms/brute-force-algorithms/index.md b/guide/english/algorithms/brute-force-algorithms/index.md
index e1174e33fc..11c957cd3b 100644
--- a/guide/english/algorithms/brute-force-algorithms/index.md
+++ b/guide/english/algorithms/brute-force-algorithms/index.md
@@ -12,7 +12,7 @@ Some more examples of brute force algorithms are:
- A 5-digit password, in the worst case scenario, would take 105 tries to crack.
- A brute-force algorithm to find the divisors of a natural number n would enumerate all integers from 1 to n, and check whether each of them divides n without remainder.
-The time complexity of brute force is O(n*m) . So, if we were to search for a string of 'n' characters in a string of 'm' characters using brute force, it would take us n * m tries.
+The time complexity of brute force is O(n*m) . So, if we were to search for a string of 'n' characters in a string of 'm' characters using brute force, it would take O(n*m) time.
#### More Information: