From 4fcaad042ac5367f58c099145c3ac58e92a11cbd Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Thu, 16 Aug 2018 03:40:54 -0500 Subject: [PATCH] Fix typo --- advanced/part1/src/Viewer/Cred.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/part1/src/Viewer/Cred.elm b/advanced/part1/src/Viewer/Cred.elm index 50151f1..f3831f8 100644 --- a/advanced/part1/src/Viewer/Cred.elm +++ b/advanced/part1/src/Viewer/Cred.elm @@ -14,7 +14,7 @@ import Username exposing (Username) type alias Cred = -- 👉 TODO make Cred an opaque type, then fix the resulting compiler errors. -- Afterwards, it should no longer be possible for any other module to access - -- this `token` vale directly! + -- this `token` value directly! -- -- 💡 HINT: Other modules still depend on being able to access the -- `username` value. Expand this module's API to expose a new way for them