Skip to content

Commit

Permalink
[elm] missing '->' in Main elm template (#7728)
Browse files Browse the repository at this point in the history
  • Loading branch information
albertored authored and wing328 committed Feb 26, 2018
1 parent ac18722 commit 56a0268
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type Msg
update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
case msg of
NoOp
NoOp ->
( model, Cmd.none )


Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/elm/.swagger-codegen/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0-SNAPSHOT
2.4.0-SNAPSHOT
2 changes: 1 addition & 1 deletion samples/client/petstore/elm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ This API client was generated by the [swagger-codegen](https://github.com/swagge

- API version: 1.0.0
- Package version:
- Build date: 2017-12-20T12:18:55.677+01:00
- Build date: 2018-02-25T14:13:54.595+01:00
- Build package: io.swagger.codegen.languages.ElmClientCodegen
2 changes: 1 addition & 1 deletion samples/client/petstore/elm/src/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type Msg
update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
case msg of
NoOp
NoOp ->
( model, Cmd.none )


Expand Down

0 comments on commit 56a0268

Please sign in to comment.