diff --git a/src/EFCore.PG/Infrastructure/NpgsqlDbContextOptionsBuilder.cs b/src/EFCore.PG/Infrastructure/NpgsqlDbContextOptionsBuilder.cs
index ad07f951d..aedcc83a0 100644
--- a/src/EFCore.PG/Infrastructure/NpgsqlDbContextOptionsBuilder.cs
+++ b/src/EFCore.PG/Infrastructure/NpgsqlDbContextOptionsBuilder.cs
@@ -118,7 +118,7 @@ public virtual NpgsqlDbContextOptionsBuilder MapRange(
/// Maps a PostgreSQL enum type for use.
///
/// The name of the PostgreSQL enum type to be mapped.
- /// The name of the PostgreSQL schema in which the range is defined.
+ /// The name of the PostgreSQL schema in which the enum is defined.
/// The name translator used to map enum value names to PostgreSQL enum values.
public virtual NpgsqlDbContextOptionsBuilder MapEnum(
string? enumName = null,
@@ -132,7 +132,7 @@ public virtual NpgsqlDbContextOptionsBuilder MapEnum(
///
/// The CLR type of the enum.
/// The name of the PostgreSQL enum type to be mapped.
- /// The name of the PostgreSQL schema in which the range is defined.
+ /// The name of the PostgreSQL schema in which the enum is defined.
/// The name translator used to map enum value names to PostgreSQL enum values.
public virtual NpgsqlDbContextOptionsBuilder MapEnum(
Type clrType,