From 82fd5b4a44f6dc1d2e5300956f1543c13439704c Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Wed, 19 Jan 2022 18:36:57 +0100 Subject: [PATCH] Fix comment_references lint --- drift/lib/src/dsl/dsl.dart | 6 +++--- drift/lib/src/runtime/types/custom_type.dart | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drift/lib/src/dsl/dsl.dart b/drift/lib/src/dsl/dsl.dart index 32df2505..0e401ae9 100644 --- a/drift/lib/src/dsl/dsl.dart +++ b/drift/lib/src/dsl/dsl.dart @@ -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 { diff --git a/drift/lib/src/runtime/types/custom_type.dart b/drift/lib/src/runtime/types/custom_type.dart index 437f5492..d98a0815 100644 --- a/drift/lib/src/runtime/types/custom_type.dart +++ b/drift/lib/src/runtime/types/custom_type.dart @@ -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 { /// Empty constant constructor so that subclasses can have a constant /// constructor.