Skip to content

Commit

Permalink
Fix search-and-replace mishap
Browse files Browse the repository at this point in the history
We did a search and replace for all instances of `Accessible` and replaced
these with `ObjectRef` even though we were careful at doing so, this mishap
occurred.

In the item docs of `accessible_id()` it read "ObjectRef applications" which
should be "Accessible applications". This fixes that.
  • Loading branch information
luukvanderduim committed May 15, 2024
1 parent 02ceec2 commit 35d1bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atspi-proxies/src/accessible.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ trait Accessible {
/// Application-specific identifier for the current object.
///
/// A special id given to an object.
/// ObjectRef application developers can use this to give a special id to an object
/// Accessible application developers can use this to give a special id to an object
/// to use in tests, for example, "my_widget".
///
/// Note that there is no way to directly find an object by its id;
Expand Down

0 comments on commit 35d1bf7

Please sign in to comment.