Index: uspace/lib/libc/arch/ia32/src/fibril.S
===================================================================
--- uspace/lib/libc/arch/ia32/src/fibril.S	(revision baac91190efc683948e46ad8fc0384ce74181ea5)
+++ uspace/lib/libc/arch/ia32/src/fibril.S	(revision 308cdd1fd550dd5f92cd9b63ba5eb64ee03edac8)
@@ -44,5 +44,5 @@
 	movl 4(%esp),%edx	# address of the context variable to save context to
 
-		# save registers to given structure
+		# save registers to the context structure
 	CONTEXT_SAVE_ARCH_CORE %edx %eax
 
@@ -64,5 +64,5 @@
 	movl 4(%esp),%eax	# address of the context variable to restore context from
 
-		# restore registers from jmp_buf
+		# restore registers from the context structure
 	CONTEXT_RESTORE_ARCH_CORE %eax %edx
 
Index: uspace/lib/libc/arch/ia32/src/setjmp.S
===================================================================
--- uspace/lib/libc/arch/ia32/src/setjmp.S	(revision baac91190efc683948e46ad8fc0384ce74181ea5)
+++ uspace/lib/libc/arch/ia32/src/setjmp.S	(revision 308cdd1fd550dd5f92cd9b63ba5eb64ee03edac8)
@@ -36,7 +36,7 @@
 setjmp:
 	movl 0(%esp),%eax	# save pc value into eax	
-	movl 4(%esp),%edx	# address of the context variable to save context to 
+	movl 4(%esp),%edx	# address of the jmp_buf structure to save context to 
 
-		# save registers to given structure
+		# save registers to the jmp_buf structure
 	CONTEXT_SAVE_ARCH_CORE %edx %eax
 
@@ -50,5 +50,5 @@
 	movl 8(%esp), %eax	# put return value into eax	
 
-		# restore registers from jmp_buf
+		# restore registers from the jmp_buf structure
 	CONTEXT_RESTORE_ARCH_CORE %ecx %edx
 
