diff options
author | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2016-03-09 20:17:10 +0200 |
---|---|---|
committer | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2016-03-09 20:17:10 +0200 |
commit | 54813dac5346ddd0384e2bac2e4b14d037244c6c (patch) | |
tree | fed969200322a4fad8ac2fb6e3cf590a6f9a5843 /elm.html.markdown | |
parent | 15dcf8a0ab7a063a18bb9a3bcbe1319ab87ec7ff (diff) | |
parent | 1fb6e144c5b0975e6ba86c5c93fa3d37ab22c40e (diff) |
Merge pull request #2181 from simonewebdesign/patch-1
[elm/en] Fix typos
Diffstat (limited to 'elm.html.markdown')
-rw-r--r-- | elm.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elm.html.markdown b/elm.html.markdown index 944ab770..fa10671f 100644 --- a/elm.html.markdown +++ b/elm.html.markdown @@ -85,7 +85,7 @@ snd ("elm", 42) -- 42 -- Access a field with a dot and the field name. { x = 3, y = 7 }.x -- 3 --- Or with an accessor fuction, which is a dot and the field name on its own. +-- Or with an accessor function, which is a dot and the field name on its own. .y { x = 3, y = 7 } -- 7 -- Update the fields of a record. (It must have the fields already.) @@ -309,7 +309,7 @@ import Graphics.Collage as C -- An incoming port is just a type signature. port clientID : Int --- An outgoing port has a defintion. +-- An outgoing port has a definition. port clientOrders : List String port clientOrders = ["Books", "Groceries", "Furniture"] @@ -342,7 +342,7 @@ $ elm package diff evancz/elm-html 3.0.0 4.0.2 ``` The Elm language is surprisingly small. You can now look through almost any Elm -source code and have a rough idea of what is going on. However, the possibilties +source code and have a rough idea of what is going on. However, the possibilities for error-resistant and easy-to-refactor code are endless! Here are some useful resources. |