Commit 5a9b5251 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Fix a typo: unknown action type (#9844)

parent 28414973
...@@ -237,7 +237,7 @@ TextInputAction _toTextInputAction(String action) { ...@@ -237,7 +237,7 @@ TextInputAction _toTextInputAction(String action) {
case 'TextInputAction.done': case 'TextInputAction.done':
return TextInputAction.done; return TextInputAction.done;
} }
throw new FlutterError('Unknow text input action: $action'); throw new FlutterError('Unknown text input action: $action');
} }
class _TextInputClientHandler { class _TextInputClientHandler {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment