Fix comment_references lint

This commit is contained in:
Simon Binder 2022-01-19 18:36:57 +01:00
parent 75463f8819
commit 82fd5b4a44
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 4 additions and 4 deletions

View File

@ -15,9 +15,9 @@ part 'table.dart';
/// }
/// ```
/// Neither [Table.integer], [BuildIntColumn.autoIncrement] or
/// [BuildColumn.call] will be called at runtime. Instead, the generator will
/// take a look at the written Dart code to recognize that `id` is a column of
/// type int that has auto increment (and is thus the primary key). It will
/// [BuildGeneralColumn.call] will be called at runtime. Instead, the generator
/// will take a look at the written Dart code to recognize that `id` is a column
/// of type int that has auto increment (and is thus the primary key). It will
/// generate a subclass of `MyTable` which looks like this:
/// ```dart
/// class _$MyTable extends MyTable {

View File

@ -6,7 +6,7 @@ part of 'sql_types.dart';
/// Dart currently supports [DateTime], [double], [int], [Uint8List], [bool]
/// and [String] for [S].
///
/// Also see [BuildColumn.map] for details.
/// Also see [BuildGeneralColumn.map] for details.
abstract class TypeConverter<D, S> {
/// Empty constant constructor so that subclasses can have a constant
/// constructor.