From 3eb8c04efc87b10d25b7e238b82a3f673f62b31c Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Fri, 13 Jul 2018 12:37:42 -0700 Subject: [PATCH] fix typo in interop code (#5743) --- lib/ui/semantics.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/semantics.dart b/lib/ui/semantics.dart index 174b21ae8..91766160d 100644 --- a/lib/ui/semantics.dart +++ b/lib/ui/semantics.dart @@ -571,7 +571,7 @@ class SemanticsUpdateBuilder extends NativeFieldWrapperClass2 { assert(label != null && label != ''); _updateCustomAction(id, label); } - void _updateCustomAction(int id, String label) native 'SemanticsUpdateBuilder_updateAction'; + void _updateCustomAction(int id, String label) native 'SemanticsUpdateBuilder_updateCustomAction'; /// Creates a [SemanticsUpdate] object that encapsulates the updates recorded /// by this object. -- GitLab