From 5a6b7cad3f5e213fed8b4cdcedd9d9cfb8dfd7f5 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sun, 6 Aug 2023 22:19:40 -0400 Subject: [PATCH] Typo --- src/Data/Ratio.idr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/Ratio.idr b/src/Data/Ratio.idr index d0a0602..3da1861 100644 --- a/src/Data/Ratio.idr +++ b/src/Data/Ratio.idr @@ -47,7 +47,7 @@ mkRatio n d = case d /= 0 of True => reduce $ MkRatio n d ||| Create a ratio of two values, unsafely assuming that they are coprime and -||| the denomindator is non-zero. +||| the denominator is non-zero. ||| WARNING: This function will behave erratically and may crash your program ||| if these conditions are not met! export %unsafe