commit 346458c840dd1c4df9fdcf0749ff6a6c000e713e
Author: Mattias Andrée <[email protected]>
AuthorDate: Mon Mar 7 07:22:31 2016 +0100
Commit: Mattias Andrée <[email protected]>
CommitDate: Mon Mar 7 07:22:31 2016 +0100
Fix another typo
Signed-off-by: Mattias Andrée <[email protected]>
diff --git a/src/zmul.c b/src/zmul.c
index 9fba2e6..6023664 100644
--- a/src/zmul.c
+++ b/src/zmul.c
@@ -8,7 +8,7 @@ zmul(z_t a, z_t b, z_t c)
/*
* Karatsuba algorithm
*
- * Basically, this is how you were toughed to multiply large numbers
+ * Basically, this is how you were taught to multiply large numbers
* by hand in school: 4010â
3020 = (4000 + 10)(3000 + 20) =
= 40â
30â
10â´ + (40â
20 + 30â
10)â
10² + 10â
20, but the
middle is
* optimised to only one multiplication: