We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c26a0a commit 10dd2eeCopy full SHA for 10dd2ee
json_annotation/lib/src/json_converter.dart
@@ -13,7 +13,7 @@
13
/// [JsonConverter]s can be placed either on the class:
14
///
15
/// ```dart
16
-/// class MyConverter extends JsonConverter<Value, JSON> {
+/// class MyJsonConverter extends JsonConverter<Value, JSON> {
17
/// // TODO
18
/// }
19
@@ -36,7 +36,7 @@
36
/// Or finally, passed to the annotation:
37
38
///```dart
39
-/// @JsonSerializable(converters: [MyConverter()])
+/// @JsonSerializable(converters: [MyJsonConverter()])
40
/// class Example {}
41
/// ```
42
abstract class JsonConverter<T, S> {
0 commit comments