@@ -190,17 +190,17 @@ module.exports = extendFlat({
190
190
dflt : '=' ,
191
191
editType : 'calc' ,
192
192
description : [
193
- 'Sets the filter operation.' ,
193
+ 'Sets the constraint operation.' ,
194
194
195
- '*=* keeps items equal to `value`' ,
195
+ '*=* keeps regions equal to `value`' ,
196
196
197
- '*<* and *<=* keep items less than `value`' ,
197
+ '*<* and *<=* keep regions less than `value`' ,
198
198
199
- '*>* and *>=* keep items greater than `value`' ,
199
+ '*>* and *>=* keep regions greater than `value`' ,
200
200
201
- '*[]*, *()*, *[)*, and *(]* keep items inside `value[0]` to `value[1]`' ,
201
+ '*[]*, *()*, *[)*, and *(]* keep regions inside `value[0]` to `value[1]`' ,
202
202
203
- '*][*, *)(*, *](*, *)[* keep items outside `value[0]` to value[1]`' ,
203
+ '*][*, *)(*, *](*, *)[* keep regions outside `value[0]` to value[1]`' ,
204
204
205
205
'Open vs. closed intervals make no difference to constraint display, but' ,
206
206
'all versions are allowed for consistency with filter transforms.'
@@ -212,22 +212,16 @@ module.exports = extendFlat({
212
212
role : 'info' ,
213
213
editType : 'calc' ,
214
214
description : [
215
- 'Sets the value or values by which to filter by.' ,
216
-
217
- 'Values are expected to be in the same type as the data linked' ,
218
- 'to *target*.' ,
215
+ 'Sets the value or values of the constraint boundary.' ,
219
216
220
217
'When `operation` is set to one of the comparison values' ,
221
218
'(' + COMPARISON_OPS2 + ')' ,
222
- '*value* is expected to be a number or a string .' ,
219
+ '*value* is expected to be a number.' ,
223
220
224
- 'When `operation` is set to one of the interval value ' ,
221
+ 'When `operation` is set to one of the interval values ' ,
225
222
'(' + INTERVAL_OPS + ')' ,
226
- '*value* is expected to be 2-item array where the first item' ,
227
- 'is the lower bound and the second item is the upper bound.' ,
228
-
229
- 'Open vs. closed intervals make no difference to constraint display, but' ,
230
- 'all versions are allowed for consistency with filter transforms.'
223
+ '*value* is expected to be an array of two numbers where the first' ,
224
+ 'is the lower bound and the second is the upper bound.' ,
231
225
] . join ( ' ' )
232
226
} ,
233
227
editType : 'calc' ,
0 commit comments