Skip to content

Commit 6c8d28f

Browse files
author
Ivan Dlugos
committed
documentation and minor cleanups
1 parent 27df654 commit 6c8d28f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

objectbox/lib/src/query/property.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
part of query;
22

3-
/// Property query base
3+
/// Property query base.
44
abstract class PropertyQuery<T> {
55
final Pointer<OBX_query_prop> _cProp;
66
final int _type;

objectbox/lib/src/query/query.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ enum _ConditionOp {
269269
between,
270270
}
271271

272+
/// A [Query] condition base class.
272273
abstract class Condition {
273274
// using & because && is not overridable
274275
Condition operator &(Condition rh) => and(rh);

0 commit comments

Comments
 (0)