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 =
162
162
y =
163
163
[ ( " y" , Encode . float point. y ) ]
164
164
in
165
- object <|
166
- x
167
- ++ y
165
+ object <| x ++ y
168
166
```
169
167
170
168
which 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 =
78
78
radius =
79
79
[ ( " radius" , Encode . float root. radius ) ]
80
80
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 =
101
101
y =
102
102
[ ( " y" , Encode . float point. y ) ]
103
103
in
104
- object <|
105
- x
106
- ++ y
104
+ object <| x ++ y
You can’t perform that action at this time.
0 commit comments