From 877bdc87566e073aeae55cf7e38e710d792a338b Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Tue, 19 Feb 2019 23:27:37 -0800 Subject: [PATCH] Fix minor typos in accessibility action docs (flutter/engine#7882) Fixes a minor pluralisation error in docs for didGainAccessibilityFocus, didLoseAccessibilityFocus. --- engine/src/flutter/lib/ui/semantics.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/lib/ui/semantics.dart b/engine/src/flutter/lib/ui/semantics.dart index ea963e64cad..750f7f0175b 100644 --- a/engine/src/flutter/lib/ui/semantics.dart +++ b/engine/src/flutter/lib/ui/semantics.dart @@ -124,7 +124,7 @@ class SemanticsAction { /// Paste the current content of the clipboard. static const SemanticsAction paste = const SemanticsAction._(_kPasteIndex); - /// Indicates that the nodes has gained accessibility focus. + /// Indicates that the node has gained accessibility focus. /// /// This handler is invoked when the node annotated with this handler gains /// the accessibility focus. The accessibility focus is the @@ -137,7 +137,7 @@ class SemanticsAction { /// Accessibility focus and input focus can be held by two different nodes! static const SemanticsAction didGainAccessibilityFocus = const SemanticsAction._(_kDidGainAccessibilityFocusIndex); - /// Indicates that the nodes has lost accessibility focus. + /// Indicates that the node has lost accessibility focus. /// /// This handler is invoked when the node annotated with this handler /// loses the accessibility focus. The accessibility focus is