Skip to content

Commit 129d054

Browse files
committed
docs: typo
1 parent 17e5a54 commit 129d054

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

EXILED/Exiled.API/Extensions/BitwiseExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static T ModifyFlags<T>(this T flags, bool value, params T[] changeFlags)
6767
/// <param name="value">Value to check in flag.</param>
6868
/// <typeparam name="T">The type of the enum.</typeparam>
6969
/// <returns><see langword="true"/> if value is presented in flag. Otherwise, <see langword="false"/>.</returns>
70-
[Obsolete("Use Enum::HasFlagFast instead.")]
70+
[Obsolete("Use Enum::HasFlag instead.")]
7171
public static bool HasFlagFast<T>(this T flag, T value)
7272
where T : Enum => flag.HasFlag(value);
7373
}

0 commit comments

Comments
 (0)