Skip to content

Commit 4f57ef2

Browse files
committed
Update docs
1 parent 05bdf28 commit 4f57ef2

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

lib/src/api/models/condition.dart

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,24 @@ part 'condition.g.dart';
99

1010
/// condition operation for basic conditions
1111
enum ConditionOperation {
12-
/// equals to operator. Checks if the value of the variable is equal to the
13-
/// value provided.
12+
/// Checks if the value of the variable is equal to the value provided.
1413
equalsTo,
1514

16-
/// not equals to operator. Checks if the value of the variable is not equal
17-
/// to the value provided.
15+
/// Checks if the value of the variable is not equal to the value provided.
1816
notEqualsTo,
1917

20-
/// greater than operator. Checks if the value of the variable is greater
21-
/// than the value provided.
18+
/// Checks if the value of the variable is greater than the value provided.
2219
greaterThan,
2320

24-
/// less than operator. Checks if the value of the variable is less than the
25-
/// value provided.
21+
/// Checks if the value of the variable is less than the value provided.
2622
lessThan,
2723

28-
/// greater than or equal to operator. Checks if the value of the variable is
29-
/// greater than or equal to the value provided.
24+
/// Checks if the value of the variable is greater than or equal to the
25+
/// value provided.
3026
greaterThanOrEqualTo,
3127

32-
/// less than or equal to operator. Checks if the value of the variable is
33-
/// less than or equal to the value provided.
28+
/// Checks if the value of the variable is less than or equal to the
29+
/// value provided.
3430
lessThanOrEqualTo;
3531

3632
/// label for the operation

0 commit comments

Comments
 (0)