Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/go_router/example/lib/extra_codec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class _MyExtraDecoder extends Converter<Object?, Object?> {
if (inputAsList[0] == 'ComplexData2') {
return ComplexData2(inputAsList[1]! as String);
}
throw FormatException('Unable tp parse input: $input');
throw FormatException('Unable to parse input: $input');
}
}

Expand Down