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
Next Next commit
fix(docs): typo in example extra_codec.dart
  • Loading branch information
ndelanou committed Dec 5, 2023
commit 1fc93bdee1d16e8ba42aa0ddfb0bfc37d1f9737f
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