Skip to content

Commit bafe387

Browse files
authored
Update ConventionSetBuilder.cs - Spelling mistake TImplementaion (#36072)
ConventionSet.Remove`1 has a typeparam named TImplementaion; while other typeparams in ConventionSet use the correct name TImplementation
1 parent 7a87abf commit bafe387

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/EFCore/Metadata/Builders/ConventionSetBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ public virtual void Remove(Type conventionType)
6868
/// <summary>
6969
/// Remove the convention of the given type.
7070
/// </summary>
71-
/// <typeparam name="TImplementaion">The type of convention to remove</typeparam>
72-
public virtual void Remove<TImplementaion>()
73-
where TImplementaion : IConvention
74-
=> Remove(typeof(TImplementaion));
71+
/// <typeparam name="TImplementation">The type of convention to remove</typeparam>
72+
public virtual void Remove<TImplementation>()
73+
where TImplementation : IConvention
74+
=> Remove(typeof(TImplementation));
7575

7676
#region Hidden System.Object members
7777

0 commit comments

Comments
 (0)