Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
Prev Previous commit
Next Next commit
fix "the this"
  • Loading branch information
yjbanov committed Dec 18, 2023
commit a182001c385c34e2c4742cbdd9a73d83d12441ad
2 changes: 1 addition & 1 deletion lib/web_ui/lib/src/engine/semantics/focusable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Focusable extends RoleManager {
/// programmatically, simulating the screen reader choosing a default element
/// to focus on.
///
/// Returns `true` if the this role manager took the focus. Returns `false` if
/// Returns `true` if the role manager took the focus. Returns `false` if
/// this role manager did not take the focus. The return value can be used to
/// decide whether to stop searching for a node that should take focus.
bool focusAsRouteDefault() {
Expand Down
2 changes: 1 addition & 1 deletion lib/web_ui/lib/src/engine/semantics/semantics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ abstract class PrimaryRoleManager {
/// input focus. For example, a plain text node cannot take input focus, but
/// it can take accessibility focus.
///
/// Returns `true` if the this role manager took the focus. Returns `false` if
/// Returns `true` if the role manager took the focus. Returns `false` if
/// this role manager did not take the focus. The return value can be used to
/// decide whether to stop searching for a node that should take focus.
bool focusAsRouteDefault();
Expand Down