From 90a8999b4b1e9a37bf5fa4dce12bc1d43fb52235 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 5 Oct 2023 22:29:15 -0400 Subject: [PATCH] Fix typo. --- InstructionSets/x86/Instruction.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InstructionSets/x86/Instruction.hpp b/InstructionSets/x86/Instruction.hpp index 3bc2b14a4..ca7a37269 100644 --- a/InstructionSets/x86/Instruction.hpp +++ b/InstructionSets/x86/Instruction.hpp @@ -626,7 +626,7 @@ class DataPointer { } constexpr Source segment(Source segment_override) const { - // TODO: remove conditionaluty here. + // TODO: remove conditionality here. if(segment_override != Source::None) return segment_override; if(const auto segment = default_segment(); segment != Source::None) return segment; return Source::DS;