From f46b2f46ccca7cbce4e67d9ffc14ceba89403b49 Mon Sep 17 00:00:00 2001 From: gnp Date: Sat, 16 Feb 2019 10:50:43 -0800 Subject: [PATCH] Plural of "modulus" is "moduli". --- _sips/sips/2014-06-27-42.type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sips/sips/2014-06-27-42.type.md b/_sips/sips/2014-06-27-42.type.md index 3cc6aa6db1..0c4e208810 100644 --- a/_sips/sips/2014-06-27-42.type.md +++ b/_sips/sips/2014-06-27-42.type.md @@ -324,7 +324,7 @@ case class Residue[M <: Int](n: Int) extends AnyVal { ``` Given this definition we can work with modular numbers without any danger of mixing numbers with -different modulii, +different moduli, ``` val fiveModTen = Residue[10](5)