Add missing "not" in documentation for TypeConverter

This commit is contained in:
Simon Friis Vindum 2023-09-17 18:40:51 +02:00 committed by GitHub
parent 069c4c76c3
commit 82c4668184
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] /// Dart currently supports [DateTime], [double], [int], [Uint8List], [bool]
/// and [String] for [S]. /// 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 /// JSON by default. To control that, use a [JsonTypeConverter] or a custom
/// [ValueSerializer]. /// [ValueSerializer].
/// ///