Skip to content

Commit 2891119

Browse files
authored
Correct typo in XML doc for MapEnum (#3605)
1 parent 1b835f1 commit 2891119

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EFCore.PG/Infrastructure/NpgsqlDbContextOptionsBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public virtual NpgsqlDbContextOptionsBuilder MapRange(
118118
/// Maps a PostgreSQL enum type for use.
119119
/// </summary>
120120
/// <param name="enumName">The name of the PostgreSQL enum type to be mapped.</param>
121-
/// <param name="schemaName">The name of the PostgreSQL schema in which the range is defined.</param>
121+
/// <param name="schemaName">The name of the PostgreSQL schema in which the enum is defined.</param>
122122
/// <param name="nameTranslator">The name translator used to map enum value names to PostgreSQL enum values.</param>
123123
public virtual NpgsqlDbContextOptionsBuilder MapEnum<T>(
124124
string? enumName = null,
@@ -132,7 +132,7 @@ public virtual NpgsqlDbContextOptionsBuilder MapEnum<T>(
132132
/// </summary>
133133
/// <param name="clrType">The CLR type of the enum.</param>
134134
/// <param name="enumName">The name of the PostgreSQL enum type to be mapped.</param>
135-
/// <param name="schemaName">The name of the PostgreSQL schema in which the range is defined.</param>
135+
/// <param name="schemaName">The name of the PostgreSQL schema in which the enum is defined.</param>
136136
/// <param name="nameTranslator">The name translator used to map enum value names to PostgreSQL enum values.</param>
137137
public virtual NpgsqlDbContextOptionsBuilder MapEnum(
138138
Type clrType,

0 commit comments

Comments
 (0)