Index: kernel/generic/src/printf/printf_core.c
===================================================================
--- kernel/generic/src/printf/printf_core.c	(revision e49b57b294e490e709e48b481e92dc50cbbf8a3d)
+++ kernel/generic/src/printf/printf_core.c	(revision 1724745fc31c34fa9d40d58281bd14ff7510fd83)
@@ -491,5 +491,5 @@
 		counter += retval;
 	
-	/* Print tailing spaces */
+	/* Print trailing spaces */
 	
 	while (width-- > 0) {
Index: kernel/generic/src/printf/vsnprintf.c
===================================================================
--- kernel/generic/src/printf/vsnprintf.c	(revision e49b57b294e490e709e48b481e92dc50cbbf8a3d)
+++ kernel/generic/src/printf/vsnprintf.c	(revision 1724745fc31c34fa9d40d58281bd14ff7510fd83)
@@ -100,5 +100,5 @@
 	}
 	
-	/* Buffer is big enought to print the whole string */
+	/* Buffer is big enough to print the whole string */
 	memcpy((void *)(data->dst + data->len), (void *) str, size);
 	data->len += size;
Index: uspace/lib/libc/generic/io/printf_core.c
===================================================================
--- uspace/lib/libc/generic/io/printf_core.c	(revision e49b57b294e490e709e48b481e92dc50cbbf8a3d)
+++ uspace/lib/libc/generic/io/printf_core.c	(revision 1724745fc31c34fa9d40d58281bd14ff7510fd83)
@@ -490,5 +490,5 @@
 		counter += retval;
 	
-	/* Print tailing spaces */
+	/* Print trailing spaces */
 	
 	while (width-- > 0) {
Index: uspace/lib/libc/generic/io/vsnprintf.c
===================================================================
--- uspace/lib/libc/generic/io/vsnprintf.c	(revision e49b57b294e490e709e48b481e92dc50cbbf8a3d)
+++ uspace/lib/libc/generic/io/vsnprintf.c	(revision 1724745fc31c34fa9d40d58281bd14ff7510fd83)
@@ -100,5 +100,5 @@
 	}
 	
-	/* Buffer is big enought to print the whole string */
+	/* Buffer is big enough to print the whole string */
 	memcpy((void *)(data->dst + data->len), (void *) str, size);
 	data->len += size;
Index: uspace/lib/libc/generic/malloc.c
===================================================================
--- uspace/lib/libc/generic/malloc.c	(revision e49b57b294e490e709e48b481e92dc50cbbf8a3d)
+++ uspace/lib/libc/generic/malloc.c	(revision 1724745fc31c34fa9d40d58281bd14ff7510fd83)
@@ -392,5 +392,5 @@
 		if (orig_size - real_size >= STRUCT_OVERHEAD) {
 			/* Split the original block to a full block
-			   and a tailing free block */
+			   and a trailing free block */
 			block_init((void *) head, real_size, false);
 			block_init((void *) head + real_size,
