Skip to content

Commit eb0d1e7

Browse files
authored
fix: correct nullability spelling in exception (#89)
1 parent b553d0a commit eb0d1e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DynamoDBGenerator.SourceGenerator/Types/TypeIdentifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected TypeIdentifier(ITypeSymbol typeSymbol)
2424
{ IsValueType: true, OriginalDefinition.SpecialType: SpecialType.System_Nullable_T } => true,
2525
{ IsValueType: true } => false,
2626
_ => throw new ArgumentOutOfRangeException(
27-
$"Could not determine nullablity of type '{typeSymbol.ToDisplayString()}'.")
27+
$"Could not determine nullability of type '{typeSymbol.ToDisplayString()}'.")
2828
};
2929

3030
TypeSymbol = typeSymbol;

0 commit comments

Comments
 (0)