Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 8c025ef

Browse files
authored
Fix err labels (#36)
1 parent 15fe2e3 commit 8c025ef

File tree

12 files changed

+130
-130
lines changed

12 files changed

+130
-130
lines changed

example/src/Bar.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ genInp = F.for (Arr.range 0 10) \i → do
142142
four ← random <#> ((_ + 0.3) >>> U.precise 2.0)
143143
pure {label, one, two, three, four}
144144

145-
chart e. Eff (random RANDOM, dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
145+
chart e. Eff (random RANDOM, dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
146146
chart = do
147147
mbEl ← U.getElementById $ ElementId "bar"
148148
case mbEl of

example/src/Funnel.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ options = do
114114
E.name "five"
115115
E.value 80.0
116116

117-
chart e. Eff (dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
117+
chart e. Eff (dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
118118
chart = do
119119
mbEl ← U.getElementById $ ElementId "funnel"
120120
case mbEl of

example/src/Gauge.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ dataStream =
163163

164164

165165

166-
chart e. Eff (random RANDOM, dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
166+
chart e. Eff (random RANDOM, dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
167167
chart = do
168168
mbEl ← U.getElementById $ ElementId "gauge"
169169
case mbEl of

example/src/Graph.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ options = do
8989
E.sourceName "one"
9090
E.targetName "four"
9191

92-
chart e. Eff (dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
92+
chart e. Eff (dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
9393
chart = do
9494
mbEl ← U.getElementById $ ElementId "graph"
9595
case mbEl of

example/src/Heatmap.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ options = do
114114
$ traverse_ E.addItem values
115115

116116

117-
chart e. Eff (dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
117+
chart e. Eff (dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
118118
chart = do
119119
mbEl ← U.getElementById $ ElementId "heatmap"
120120
case mbEl of

example/src/K.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ options = do
4040
, [ 2360.75, 2382.48, 2347.89, 2383.76 ]
4141
]
4242

43-
chart e. Eff (dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
43+
chart e. Eff (dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
4444
chart = do
4545
mbEl ← U.getElementById $ ElementId "k"
4646
case mbEl of

example/src/Line.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ optStream acc =
9191
itemsSet ← effItemsSet
9292
pure $ E.series $ E.line itemsSet
9393

94-
chart e. Eff (now NOW, dom DOM, err EXCEPTION, echarts ET.ECHARTS, random RANDOM|e) Unit
94+
chart e. Eff (now NOW, dom DOM, exception EXCEPTION, echarts ET.ECHARTS, random RANDOM|e) Unit
9595
chart = do
9696
mbEl ← U.getElementById $ ElementId "line"
9797
case mbEl of

example/src/Main.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import Heatmap as Heatmap
2424

2525
import Utils as U
2626

27-
main e. Eff (now NOW, dom DOM, echarts ET.ECHARTS, err EXCEPTION, random RANDOM|e) Unit
27+
main e. Eff (now NOW, dom DOM, echarts ET.ECHARTS, exception EXCEPTION, random RANDOM|e) Unit
2828
main = U.onLoad do
2929
Line.chart
3030
Scatter.chart

example/src/Pie.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ options = do
7878
E.name "eight"
7979

8080

81-
chart e. Eff (dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
81+
chart e. Eff (dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
8282
chart = do
8383
mbEl ← U.getElementById $ ElementId "pie"
8484
case mbEl of

example/src/Radar.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ options = do
117117
E.buildItems do
118118
F.for_ dataGZ (E.addItem <<< E.values)
119119

120-
chart e. Eff (dom DOM, echarts ET.ECHARTS, err EXCEPTION|e) Unit
120+
chart e. Eff (dom DOM, echarts ET.ECHARTS, exception EXCEPTION|e) Unit
121121
chart = do
122122
mbEl ← U.getElementById $ ElementId "radar"
123123
case mbEl of

0 commit comments

Comments
 (0)