File tree Expand file tree Collapse file tree 3 files changed +3
-10
lines changed
examples/example-output-elm-code/Domain Expand file tree Collapse file tree 3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -162,9 +162,7 @@ encodePoint point =
162162 y =
163163 [ ( " y" , Encode . float point. y ) ]
164164 in
165- object <|
166- x
167- ++ y
165+ object <| x ++ y
168166```
169167
170168which contains an Elm type for the ` color ` and ` point ` definitions along with
Original file line number Diff line number Diff line change @@ -78,7 +78,4 @@ encodeRoot root =
7878 radius =
7979 [ ( " radius" , Encode . float root. radius ) ]
8080 in
81- object <|
82- center
83- ++ color
84- ++ radius
81+ object <| center ++ color ++ radius
Original file line number Diff line number Diff line change @@ -101,6 +101,4 @@ encodePoint point =
101101 y =
102102 [ ( " y" , Encode . float point. y ) ]
103103 in
104- object <|
105- x
106- ++ y
104+ object <| x ++ y
You can’t perform that action at this time.
0 commit comments