summaryrefslogtreecommitdiffhomepage
path: root/de-de/elm-de.html.markdown
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-05-02 02:44:21 +0200
committercaminsha <c.96marco@hotmail.com>2020-05-02 02:44:21 +0200
commitf420555c64bfe3503970b4496acfb160b065e96b (patch)
tree7bf92c62d1282dccf0dec30308f4f79778e24073 /de-de/elm-de.html.markdown
parent653f2ee43eb0eebfcbd7f3e06c4cbf47e0191796 (diff)
Fixed a small typo
Elemenent -> Elementen
Diffstat (limited to 'de-de/elm-de.html.markdown')
-rw-r--r--de-de/elm-de.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/elm-de.html.markdown b/de-de/elm-de.html.markdown
index b74a975f..08832327 100644
--- a/de-de/elm-de.html.markdown
+++ b/de-de/elm-de.html.markdown
@@ -62,7 +62,7 @@ List.range 1 5 ++ List.range 6 10 == List.range 1 10 -- True
0 :: List.range 1 5 -- [0, 1, 2, 3, 4, 5]
-- Die Funktionen "head" und "tail" haben als Rückgabewert den "Maybe" Typ.
--- Dadurch wird die Fehlerbehandlung von fehlenden Elemenent explizit, weil
+-- Dadurch wird die Fehlerbehandlung von fehlenden Elementen explizit, weil
-- man immer mit jedem möglichen Fall umgehen muss.
List.head (List.range 1 5) -- Just 1
List.tail (List.range 1 5) -- Just [2, 3, 4, 5]