We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1a28f commit a3008a8Copy full SHA for a3008a8
crates/bindings-csharp/BSATN.Codegen/Type.cs
@@ -101,7 +101,7 @@ public abstract string EqualsStatement(
101
);
102
103
/// <summary>
104
- /// Get a statement that declares outVar and assigns assigns the hash code of inVar to it.
+ /// Get a statement that declares outVar and assigns the hash code of inVar to it.
105
///
106
/// This can't be an expression because some types need to use loops.
107
/// </summary>
@@ -489,7 +489,7 @@ public override string ToString() =>
489
bsatnDecls
490
.Select(member =>
491
{
492
- var hashName = $"hash{member.Name}";
+ var hashName = $"___hash{member.Name}";
493
494
return $"""
495
case {member.Name}(var inner):
0 commit comments