Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/SmartEnum/SmartEnum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public static bool TryFromName(string name, bool ignoreCase, out TEnum result)
/// <param name="value">The value of the item to get.</param>
/// <returns>
/// The first item found that is associated with the specified value.
/// If the specified value is not found, throws a <see cref="KeyNotFoundException"/>.
/// If the specified value is not found, throws a <see cref="SmartEnumNotFoundException"/>.
/// </returns>
/// <exception cref="SmartEnumNotFoundException"><paramref name="value"/> does not exist.</exception>
/// <seealso cref="SmartEnum{TEnum, TValue}.FromValue(TValue, TEnum)"/>
Expand Down
Loading