Index: uspace/libc/generic/async.c
===================================================================
--- uspace/libc/generic/async.c	(revision 2b017ba3f7b12c023121e41aca02b7d6bf2bdade)
+++ uspace/libc/generic/async.c	(revision 800eaf58426ea62a441ee7c6cebc936221cbbe13)
@@ -37,5 +37,5 @@
  *
  * The aim of this library is facilitating writing programs utilizing 
- * the asynchronous nature of Helenos IPC, yet using a normal way
+ * the asynchronous nature of HelenOS IPC, yet using a normal way
  * of programming. 
  *
@@ -80,5 +80,5 @@
  *       callid = async_get_call(&call);
  *       handle(callid, call);
- *       ipc_answer_fast(callid, 1,2,3);
+ *       ipc_answer_fast(callid, 1, 2, 3);
  *
  *       callid = async_get_call(&call);
@@ -105,11 +105,11 @@
 
 typedef struct {
-	struct timeval expires;      /**< Expiration time for waiting thread */
-	int inlist;             /**< If true, this struct is in timeout list */
+	struct timeval expires;		/**< Expiration time for waiting thread */
+	int inlist;             	/**< If true, this struct is in timeout list */
 	link_t link;
 
-	pstid_t ptid;                /**< Thread waiting for this message */
-	int active;                  /**< If this thread is currently active */
-	int timedout;                /**< If true, we timed out */
+	pstid_t ptid;           	/**< Thread waiting for this message */
+	int active;             	/**< If this thread is currently active */
+	int timedout;           	/**< If true, we timed out */
 } awaiter_t;
 
@@ -117,7 +117,7 @@
 	awaiter_t wdata;
 
-	int done;                    /**< If reply was received */
-	ipc_call_t *dataptr;         /**< Pointer where the answer data
-				      *   is stored */
+	int done;               	/**< If reply was received */
+	ipc_call_t *dataptr;		/**< Pointer where the answer data
+					  *   is stored */
 	ipcarg_t retval;
 } amsg_t;
@@ -132,11 +132,11 @@
 	awaiter_t wdata;
 
-	link_t link;             /**< Hash table link */
-	ipcarg_t in_phone_hash;  /**< Incoming phone hash. */
-	link_t msg_queue;        /**< Messages that should be delivered to this thread */
+	link_t link;			/**< Hash table link */
+	ipcarg_t in_phone_hash;		/**< Incoming phone hash. */
+	link_t msg_queue;		/**< Messages that should be delivered to this thread */
 	/* Structures for connection opening packet */
 	ipc_callid_t callid;
 	ipc_call_t call;
-	ipc_callid_t close_callid; /* Identification of closing packet */
+	ipc_callid_t close_callid;	/* Identification of closing packet */
 	void (*cthread)(ipc_callid_t,ipc_call_t *);
 } connection_t;
