Fix misspelled exception

This commit is contained in:
Adrian Conlon 2024-09-14 10:04:55 +01:00
parent ee0fd13ad5
commit c3f76bd3c7

View File

@ -534,7 +534,7 @@ namespace EightBit
private bool TryGetConstant(ushort value, out string name)
{
return this.symbols.TryGetQualifiedEquateyValue(value, out name);
return this.symbols.TryGetQualifiedEquateValue(value, out name);
}
private string ConvertConstantByte(ushort address) => this.ConvertConstant(this.GetByte(address));