Index: uspace/srv/taskman/task.c
===================================================================
--- uspace/srv/taskman/task.c	(revision b8341bc21ab560e485c8aac4f5a0d1473851664c)
+++ uspace/srv/taskman/task.c	(revision c675ab1ebb159b7e38a64765f63096588f7d9ff1)
@@ -1,30 +1,30 @@
 /*
- * copyright (c) 2009 martin decky
- * copyright (c) 2009 jiri svoboda
- * copyright (c) 2015 michal koutny
- * all rights reserved.
- *
- * redistribution and use in source and binary forms, with or without
+ * Copyright (c) 2009 Martin Decky
+ * Copyright (c) 2009 Jiri Svoboda
+ * Copyright (c) 2015 Michal Koutny
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  *
- * - redistributions of source code must retain the above copyright
+ * - Redistributions of source code must retain the above copyright
  *   notice, this list of conditions and the following disclaimer.
- * - redistributions in binary form must reproduce the above copyright
+ * - Redistributions in binary form must reproduce the above copyright
  *   notice, this list of conditions and the following disclaimer in the
  *   documentation and/or other materials provided with the distribution.
- * - the name of the author may not be used to endorse or promote products
+ * - The name of the author may not be used to endorse or promote products
  *   derived from this software without specific prior written permission.
  *
- * this software is provided by the author ``as is'' and any express or
- * implied warranties, including, but not limited to, the implied warranties
- * of merchantability and fitness for a particular purpose are disclaimed.
- * in no event shall the author be liable for any direct, indirect,
- * incidental, special, exemplary, or consequential damages (including, but
- * not limited to, procurement of substitute goods or services; loss of use,
- * data, or profits; or business interruption) however caused and on any
- * theory of liability, whether in contract, strict liability, or tort
- * (including negligence or otherwise) arising in any way out of the use of
- * this software, even if advised of the possibility of such damage.
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
@@ -60,13 +60,13 @@
 } retval_t;
 
-/** task hash table item. */
+/** Task hash table item. */
 typedef struct {
 	ht_link_t link;
 	
-	task_id_t id;          /**< task id. */
-	task_exit_t exit;      /**< task's uspace exit status. */
-	bool failed;           /**< task failed. */
-	retval_t retval_type;  /**< task returned a value. */
-	int retval;            /**< the return value. */
+	task_id_t id;          /**< Task id. */
+	task_exit_t exit;      /**< Task's uspace exit status. */
+	bool failed;           /**< Task failed. */
+	retval_t retval_type;  /**< Task returned a value. */
+	int retval;            /**< The return value. */
 } hashed_task_t;
 
@@ -89,5 +89,5 @@
 }
 
-/** perform actions after removal of item from the hash table. */
+/** Perform actions after removal of item from the hash table. */
 static void task_remove(ht_link_t *item)
 {
@@ -95,5 +95,5 @@
 }
 
-/** operations for task hash table. */
+/** Operations for task hash table. */
 static hash_table_ops_t task_hash_table_ops = {
 	.hash = task_hash,
