Merge pull request #2615 from paldepind/patch-1

Add missing "not" in documentation for TypeConverter
This commit is contained in:
Simon Binder 2023-09-17 22:02:10 +02:00 committed by GitHub
commit c8bce4c1e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import '../data_class.dart';
/// Dart currently supports [DateTime], [double], [int], [Uint8List], [bool]
/// and [String] for [S].
///
/// Using a type converter does impact the way drift serializes data classes to
/// Using a type converter does not impact the way drift serializes data classes to
/// JSON by default. To control that, use a [JsonTypeConverter] or a custom
/// [ValueSerializer].
///