@@ -54,7 +54,7 @@ exports.attributes = {
54
54
'*[]* filters items inside `value[0]` to value[1]` including both bounds`' ,
55
55
'*()* filters items inside `value[0]` to value[1]` excluding both bounds`' ,
56
56
'*[)* filters items inside `value[0]` to value[1]` including `value[0]` but excluding `value[1]' ,
57
- '*(]* filters items inside `value[0]` to value[1]` including both bounds` ' ,
57
+ '*(]* filters items inside `value[0]` to value[1]` excluding `value[0]` but including `value[1] ' ,
58
58
59
59
'*][* filters items outside `value[0]` to value[1]` and not equal to both bounds`' ,
60
60
'*)(* filters items outside `value[0]` to value[1]`' ,
@@ -76,7 +76,7 @@ exports.attributes = {
76
76
77
77
'When `operation` is set to one of the inequality values' ,
78
78
'(' + INEQUALITY_OPS + ')' ,
79
- '*value* is expected to be number or a string.' ,
79
+ '*value* is expected to be a number or a string.' ,
80
80
81
81
'When `operation` is set to one of the interval value' ,
82
82
'(' + INTERVAL_OPS + ')' ,
@@ -166,8 +166,8 @@ function getDataToCoordFunc(gd, filtersrc) {
166
166
// -> cast to String
167
167
if ( filtersrc === 'ids' ) return function ( v ) { return String ( v ) ; } ;
168
168
169
- // otherwise -> case to number
170
- return function ( v ) { return + ( v ) ; } ;
169
+ // otherwise -> cast to Number
170
+ return function ( v ) { return + v ; } ;
171
171
}
172
172
173
173
function getFilterFunc ( opts , d2c ) {
0 commit comments