We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a87abf commit bafe387Copy full SHA for bafe387
src/EFCore/Metadata/Builders/ConventionSetBuilder.cs
@@ -68,10 +68,10 @@ public virtual void Remove(Type conventionType)
68
/// <summary>
69
/// Remove the convention of the given type.
70
/// </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));
+ /// <typeparam name="TImplementation">The type of convention to remove</typeparam>
+ public virtual void Remove<TImplementation>()
+ where TImplementation : IConvention
+ => Remove(typeof(TImplementation));
75
76
#region Hidden System.Object members
77
0 commit comments