From b9c0851bebacb5467ce7a64f333d99a9d8268173 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Tue, 27 Dec 2022 20:01:53 +0100 Subject: [PATCH] Fix typo --- genstar/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genstar/Main.hs b/genstar/Main.hs index f6f275d..25d29c4 100644 --- a/genstar/Main.hs +++ b/genstar/Main.hs @@ -16,7 +16,7 @@ instance Arbitrary Vertex where return (Point (x, y)) -- | 'fromAngle' @angle@ --- creats a point on the unit circle at the specified angle +-- creates a point on the unit circle at the specified angle -- (specified in radians). fromAngle angle = Point (sin angle, cos angle)