@@ -54,7 +54,7 @@ exports.attributes = {
5454 '*[]* filters items inside `value[0]` to value[1]` including both bounds`' ,
5555 '*()* filters items inside `value[0]` to value[1]` excluding both bounds`' ,
5656 '*[)* 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] ' ,
5858
5959 '*][* filters items outside `value[0]` to value[1]` and not equal to both bounds`' ,
6060 '*)(* filters items outside `value[0]` to value[1]`' ,
@@ -76,7 +76,7 @@ exports.attributes = {
7676
7777 'When `operation` is set to one of the inequality values' ,
7878 '(' + INEQUALITY_OPS + ')' ,
79- '*value* is expected to be number or a string.' ,
79+ '*value* is expected to be a number or a string.' ,
8080
8181 'When `operation` is set to one of the interval value' ,
8282 '(' + INTERVAL_OPS + ')' ,
@@ -166,8 +166,8 @@ function getDataToCoordFunc(gd, filtersrc) {
166166 // -> cast to String
167167 if ( filtersrc === 'ids' ) return function ( v ) { return String ( v ) ; } ;
168168
169- // otherwise -> case to number
170- return function ( v ) { return + ( v ) ; } ;
169+ // otherwise -> cast to Number
170+ return function ( v ) { return + v ; } ;
171171}
172172
173173function getFilterFunc ( opts , d2c ) {
0 commit comments