Skip to content

Commit 0dc6461

Browse files
committed
annotations docs - fix comment style to avoid docs to be assigned to the next field
1 parent 06b42aa commit 0dc6461

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

lib/src/annotations.dart

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class Property {
2323

2424
// Specify ObjectBox property type explicitly
2525
enum PropertyType {
26-
/// dart type=bool, size: 1-byte/8-bits
27-
/// no need to specify explicitly, just use `bool`
26+
// dart type=bool, size: 1-byte/8-bits
27+
// no need to specify explicitly, just use `bool`
2828
// bool,
2929

3030
/// size: 1-byte/8-bits
@@ -39,22 +39,22 @@ enum PropertyType {
3939
/// size: 4-bytes/32-bits
4040
int,
4141

42-
/// dart type=int, size: 8-bytes/64-bits
43-
/// no need to specify explicitly, just use `int`
42+
// dart type=int, size: 8-bytes/64-bits
43+
// no need to specify explicitly, just use `int`
4444
// long,
4545

4646
/// size: 4-bytes/32-bits
4747
float,
4848

49-
/// dart type=double, size: 8-bytes/64-bits
50-
/// no need to specify explicitly, just use `double`
49+
// dart type=double, size: 8-bytes/64-bits
50+
// no need to specify explicitly, just use `double`
5151
// double,
5252

53-
/// dart type=String
54-
/// no need to specify explicitly, just use `String`
53+
// dart type=String
54+
// no need to specify explicitly, just use `String`
5555
// string,
5656

57-
/// Relation, currently not supported
57+
// Relation, currently not supported
5858
// relation,
5959

6060
/// Unix timestamp (milliseconds since 1970), size: 8-bytes/64-bits
@@ -69,8 +69,8 @@ enum PropertyType {
6969
/// - values are truncated to 8-bit int (0..255)
7070
byteVector,
7171

72-
/// dart type=List<String>
73-
/// no need to specify explicitly, just use `List<String> `
72+
// dart type=List<String>
73+
// no need to specify explicitly, just use `List<String> `
7474
// stringVector
7575
}
7676

@@ -84,8 +84,8 @@ class Transient {
8484
const Transient();
8585
}
8686

87-
/// See Sync() in sync.dart.
88-
/// Defining a class with the same name here would cause a duplicate export.
87+
// See Sync() in sync.dart.
88+
// Defining a class with the same name here would cause a duplicate export.
8989
// class Sync {
9090
// const Sync();
9191
// }

0 commit comments

Comments
 (0)