Skip to content

Commit d6c5d8f

Browse files
committed
Fixed typo
1 parent aad512f commit d6c5d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm/Reflection/TypeHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ public static Type[] GetInterfaces(this Type type) =>
739739
/// Interfaces will be ordered from the very base ones to ancestors.
740740
/// </summary>
741741
/// <param name="type">The type to get the interfaces of.</param>
742-
public static Type[] GetInterfacesOrderByInheritance(this Type type) =>
742+
public static Type[] GetInterfacesOrderedByInheritance(this Type type) =>
743743
OrderedInterfaces.GetOrAdd(type, t => t.GetInterfaces().OrderByInheritance().ToArray());
744744

745745
/// <summary>

0 commit comments

Comments
 (0)