Skip to content

Commit d5cbc41

Browse files
authored
Merge pull request #1761 from webbhuset/added-missing-upgrade-doc
Added missing upgrade doc for (,)
2 parents 7b207b3 + 817312c commit d5cbc41

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

upgrade-docs/0.19.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Both are quite similar to the `elm-package.json` format, and `elm-upgrade` can h
5858
- `Basics.toString` becomes [`Debug.toString`](https://package.elm-lang.org/packages/elm/core/latest/Debug#toString), [`String.fromInt`](https://package.elm-lang.org/packages/elm/core/latest/String#fromInt), and [`String.fromFloat`](https://package.elm-lang.org/packages/elm/core/latest/String#fromFloat).
5959
- `Basics.rem 451 10` becomes [`remainderBy 10 451`](https://package.elm-lang.org/packages/elm/core/latest/Basics#remainderBy)
6060
- `451 % 10` becomes [`modBy 10 451`](https://package.elm-lang.org/packages/elm/core/latest/Basics#modBy)
61+
- `(,)` becomes [`Tuple.pair`](https://package.elm-lang.org/packages/elm/core/latest/Tuple#pair)
6162
- `style : List (String, String) -> Attribute msg` becomes `String -> String -> Attribute msg`
6263
- `Html.beginnerProgram` becomes [`Browser.sandbox`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#sandbox).
6364
- `Html.program` becomes [`Browser.element`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#element) and [`Browser.document`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#document).

0 commit comments

Comments
 (0)