@@ -37,13 +37,13 @@ exports.attributes = {
37
37
description : [
38
38
'Sets the filter target by which the filter is applied.' ,
39
39
40
- 'If a string, * target* is assumed to be a reference to a data array' ,
40
+ 'If a string, ` target` is assumed to be a reference to a data array' ,
41
41
'in the parent trace object.' ,
42
42
'To filter about nested variables, use *.* to access them.' ,
43
43
'For example, set `target` to *marker.color* to filter' ,
44
44
'about the marker color array.' ,
45
45
46
- 'If an array, * target* is then the data array by which the filter is applied.'
46
+ 'If an array, ` target` is then the data array by which the filter is applied.'
47
47
] . join ( ' ' )
48
48
} ,
49
49
operation : {
@@ -83,23 +83,23 @@ exports.attributes = {
83
83
valType : 'any' ,
84
84
dflt : 0 ,
85
85
description : [
86
- 'Sets the value or values by which to filter by .' ,
86
+ 'Sets the value or values by which to filter.' ,
87
87
88
88
'Values are expected to be in the same type as the data linked' ,
89
- 'to * target* .' ,
89
+ 'to ` target` .' ,
90
90
91
91
'When `operation` is set to one of' ,
92
92
'the comparison values (' + COMPARISON_OPS + ')' ,
93
- '* value* is expected to be a number or a string.' ,
93
+ '` value` is expected to be a number or a string.' ,
94
94
95
95
'When `operation` is set to one of the interval values' ,
96
96
'(' + INTERVAL_OPS + ')' ,
97
- '* value* is expected to be 2-item array where the first item' ,
97
+ '` value` is expected to be 2-item array where the first item' ,
98
98
'is the lower bound and the second item is the upper bound.' ,
99
99
100
100
'When `operation`, is set to one of the set values' ,
101
101
'(' + SET_OPS + ')' ,
102
- '* value* is expected to be an array with as many items as' ,
102
+ '` value` is expected to be an array with as many items as' ,
103
103
'the desired set elements.'
104
104
] . join ( ' ' )
105
105
} ,
0 commit comments