Skip to content

Commit a5a103f

Browse files
committed
Add missing quote
1 parent 325f9f7 commit a5a103f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Npgsql/Internal/PgTypeInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ static void ValidateResult(string methodName, PgConcreteTypeInfo result, Type ex
331331
throw new InvalidOperationException($"'{methodName}' returned a {nameof(result.Converter)} of type {result.Converter.TypeToConvert} instead of {expectedTypeToConvert} unexpectedly.");
332332

333333
if (expectPortableTypeIds && result.PgTypeId.IsOid || !expectPortableTypeIds && result.PgTypeId.IsDataTypeName)
334-
throw new InvalidOperationException($"{methodName}' returned a concrete type info with a {nameof(result.PgTypeId)} that was not in canonical form.");
334+
throw new InvalidOperationException($"'{methodName}' returned a concrete type info with a {nameof(result.PgTypeId)} that was not in canonical form.");
335335
}
336336
}
337337

0 commit comments

Comments
 (0)