diff --git a/reactos/ntoskrnl/kd64/kdapi.c b/reactos/ntoskrnl/kd64/kdapi.c index 14be567c6c1..1eac9cf6dbd 100644 --- a/reactos/ntoskrnl/kd64/kdapi.c +++ b/reactos/ntoskrnl/kd64/kdapi.c @@ -671,7 +671,7 @@ KdpGetContext(IN PDBGKD_MANIPULATE_STATE64 State, ProcessorState.ContextFrame; } - /* Copy it over */ + /* Copy it over to the debugger */ RtlCopyMemory(Data->Buffer, TargetContext, sizeof(CONTEXT)); Data->Length = sizeof(CONTEXT); @@ -724,7 +724,7 @@ KdpSetContext(IN PDBGKD_MANIPULATE_STATE64 State, ProcessorState.ContextFrame; } - /* Get the context from the PRCB array */ + /* Copy the new context to it */ RtlCopyMemory(TargetContext, Data->Buffer, sizeof(CONTEXT)); /* Finish up */ diff --git a/reactos/ntoskrnl/ke/i386/irqobj.c b/reactos/ntoskrnl/ke/i386/irqobj.c index 421b7b22d87..f3d841ce97f 100644 --- a/reactos/ntoskrnl/ke/i386/irqobj.c +++ b/reactos/ntoskrnl/ke/i386/irqobj.c @@ -3,7 +3,7 @@ * LICENSE: GPL - See COPYING in the top level directory * FILE: ntoskrnl/ke/i386/irq.c * PURPOSE: Manages the Kernel's IRQ support for external drivers, - * for the purpouses of connecting, disconnecting and setting + * for the purposes of connecting, disconnecting and setting * up ISRs for drivers. The backend behind the Io* Interrupt * routines. * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)