Skip to content

Commit

Permalink
fixed a couple of typos (#12520)
Browse files Browse the repository at this point in the history
fixed a couple of typos
  • Loading branch information
Tanya-Solyanik authored Nov 21, 2024
1 parent ea6d0bb commit 200451f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public static int TryGetChildCount(this AgileComPointer<IAccessible>? agile)
}

/// <summary>
/// Gets the accessible object's owner control's accesssible role.
/// Gets the accessible object's owner control's accessible role.
/// </summary>
public static AccessibleRole GetOwnerAccessibleRole<TAccessible>(
this TAccessible accessibleObject,
Expand All @@ -311,7 +311,7 @@ public static AccessibleRole GetOwnerAccessibleRole<TAccessible>(
}

/// <summary>
/// Gets the accessible object's owner control's accesssible name.
/// Gets the accessible object's owner control's accessible name.
/// </summary>
[return: NotNullIfNotNull(nameof(defaultName))]
public static string? GetOwnerAccessibleName<TAccessible>(
Expand All @@ -320,7 +320,7 @@ public static AccessibleRole GetOwnerAccessibleRole<TAccessible>(
=> accessibleObject.Owner?.AccessibleName ?? defaultName;

/// <summary>
/// Gets the accessible object's owner control's accesssible text.
/// Gets the accessible object's owner control's accessible text.
/// </summary>
public static string GetOwnerText<TAccessible>(this TAccessible accessibleObject, string defaultText = "")
where TAccessible : AccessibleObject, IOwnedObject<Control>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: Dependency("System,", LoadHint.Always)]
[assembly: Dependency("System.Drawing,", LoadHint.Always)]
[assembly: Dependency("System.Core", LoadHint.Sometimes)]
// This is now trun on by default, use source file NO_RUNTIMECOMPATIBILITY_ATTRIBUTE flag to control this
// This is now on by default, use source file NO_RUNTIMECOMPATIBILITY_ATTRIBUTE flag to control this
// [assembly:RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: StringFreezing]
[assembly: System.Runtime.InteropServices.TypeLibVersion(2, 4)]
Expand Down

0 comments on commit 200451f

Please sign in to comment.