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
8 changes: 4 additions & 4 deletions src/EFCore/Metadata/Builders/ConventionSetBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ public virtual void Remove(Type conventionType)
/// <summary>
/// Remove the convention of the given type.
/// </summary>
/// <typeparam name="TImplementaion">The type of convention to remove</typeparam>
public virtual void Remove<TImplementaion>()
where TImplementaion : IConvention
=> Remove(typeof(TImplementaion));
/// <typeparam name="TImplementation">The type of convention to remove</typeparam>
public virtual void Remove<TImplementation>()
where TImplementation : IConvention
=> Remove(typeof(TImplementation));

#region Hidden System.Object members

Expand Down