Begin tasking v3 rewrite
diff --git a/src/kernel/task.c b/src/kernel/task.c
index d538e01..85cce5b 100644
--- a/src/kernel/task.c
+++ b/src/kernel/task.c
@@ -85,8 +85,8 @@
 	// Virtual address of page directory (in kernel memory)
 	uint *dir_v = PHYS_TO_VIRT(proc->page_directory_p);
 
-	// Virtual location of new stack, with space reserved for argument and
-	// return address to kill_this_thread().
+	// Virtual location of new stack, with space reserved for argument
+	// and return address to kill_this_thread().
 	uint new_stack_base_v = proc->last_stack_pos;
 	proc->last_stack_pos -= 0x1000;