Skip to content

Commit b9ae382

Browse files
author
JF
committed
Filter renaming
1 parent a498e1c commit b9ae382

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Filter.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// @flow
22

33
/**
4-
* @property {string} name - The name of this field
4+
* @property {string} variable - The variable of this field
55
*/
66
export default class Filter {
77
property: string;
8-
filter: string;
8+
variable: string;
99

1010
/**
1111
* @param {string} property
12-
* @param {string} filter
12+
* @param {string} variable
1313
*/
14-
constructor(property: string, filter: string) {
14+
constructor(property: string, variable: string) {
1515
this.property = property;
16-
this.filter = filter;
16+
this.variable = variable;
1717
}
1818
}

0 commit comments

Comments
 (0)