aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Utils/Tuple.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Utils/Tuple.elm')
-rw-r--r--src/client/elm/Utils/Tuple.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/Utils/Tuple.elm b/src/client/elm/Utils/Tuple.elm
index d9246f6..f9391a0 100644
--- a/src/client/elm/Utils/Tuple.elm
+++ b/src/client/elm/Utils/Tuple.elm
@@ -1,8 +1,8 @@
-module Utils.Tuple
+module Utils.Tuple exposing
( mapFst
, mapSnd
, mapBoth
- ) where
+ )
mapFst : (a -> x) -> (a, b) -> (x, b)
mapFst f (a, b) = (f a, b)