diff --git a/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexHandler.cs b/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexHandler.cs
index 89802d3..c3bee0d 100644
--- a/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexHandler.cs
+++ b/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexHandler.cs
@@ -3,7 +3,7 @@ namespace X86Disassembler.X86.Handlers.FloatingPoint.Control;
using X86Disassembler.X86.Operands;
///
-/// Handler for FCLEX instruction (DB E2)
+/// Handler for FNCLEX instruction (0xDB 0xE2) - Clears floating-point exception flags without checking for pending unmasked exceptions
///
public class FclexHandler : InstructionHandler
{
diff --git a/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexWaitHandler.cs b/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexWaitHandler.cs
index ce8b076..457d985 100644
--- a/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexWaitHandler.cs
+++ b/X86Disassembler/X86/Handlers/FloatingPoint/Control/FclexWaitHandler.cs
@@ -1,7 +1,7 @@
namespace X86Disassembler.X86.Handlers.FloatingPoint.Control;
///
-/// Handler for FCLEX instruction with WAIT prefix (0x9B 0xDB 0xE2)
+/// Handler for FCLEX instruction with WAIT prefix (0x9B 0xDB 0xE2) - Clears floating-point exception flags after checking for pending unmasked floating-point exceptions
///
public class FclexWaitHandler : InstructionHandler
{