From 4dbfc3f806fcaf82a905657f84fd1975840b5c0d Mon Sep 17 00:00:00 2001 From: derekdreery Date: Tue, 22 Nov 2016 22:14:56 +0000 Subject: [PATCH] Very small typo ;) --- src/Table.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Table.elm b/src/Table.elm index 7851935..cf8153c 100644 --- a/src/Table.elm +++ b/src/Table.elm @@ -128,7 +128,7 @@ You provide the following information in your table configuration: - `toId` — turn a `Person` into a unique ID. This lets us use [`Html.Keyed`][keyed] under the hood to make resorts faster. - `columns` — specify some columns to show. - - `toMsg` — a way send new table states to your app as messages. + - `toMsg` — a way to send new table states to your app as messages. See the [examples][] to get a better feel for this! @@ -618,4 +618,4 @@ sort by best time by default, but also see the other order. -} increasingOrDecreasingBy : (data -> comparable) -> Sorter data increasingOrDecreasingBy toComparable = - IncOrDec (List.sortBy toComparable) \ No newline at end of file + IncOrDec (List.sortBy toComparable)