diff --git a/PPI/Connectors.hh b/PPI/Connectors.hh
index d82e14a8c41b981c51228602e7ac1967f02dcfea..99e50ce7b052b37a14a00a7335354a59ce02f836 100644
--- a/PPI/Connectors.hh
+++ b/PPI/Connectors.hh
@@ -147,7 +147,7 @@ namespace connector {
                                                  notifications. */
 
         template <class Handler>
-        void onUnthrottle(Handler handler); ///< Register unthrottle notification handler
+        void onUnthrottle(Handler handle); ///< Register unthrottle notification handler
                                         /**< The handler register here will be called, whenever an
                                              unthrottle notification comes in. The \a handler
                                              argument is either an arbitrary callable object or it
diff --git a/Socket/ClientSocketHandle.hh b/Socket/ClientSocketHandle.hh
index fbecf6dce463780258049e3518c8a48566b52205..0cca5f29895f3c9cc0473c407551ce446e73fff3 100644
--- a/Socket/ClientSocketHandle.hh
+++ b/Socket/ClientSocketHandle.hh
@@ -178,7 +178,7 @@ namespace senf {
                                              range. read returns a past-the-end iterator after the
                                              last character read. This iterator will point to
                                              somewhere within the input range.
-                                             \param[in/out] range Range to store data in 
+                                             \param[in,out] range Range to store data in 
                                              \returns past-the-end iterator pointer to after the
                                                  last read character 
                                              \see \ref read() \n
@@ -239,7 +239,7 @@ namespace senf {
                                              range. read returns a past-the-end iterator after the
                                              last character read. This iterator will point to
                                              somewhere within the input range.
-                                             \param[in/out] range Range to store data in 
+                                             \param[in,out] range Range to store data in 
                                              \param[out] from peers address from which the data was
                                                  received
                                              \returns past-the-end iterator pointer to after the
diff --git a/Socket/ReadWritePolicy.hh b/Socket/ReadWritePolicy.hh
index 7d7a537f7446812ed3587058c13fce378ae95dbf..e8846694ad25e879a4491aa4fce381b81cee029b 100644
--- a/Socket/ReadWritePolicy.hh
+++ b/Socket/ReadWritePolicy.hh
@@ -120,7 +120,7 @@ namespace senf {
                                              \param[in] handle socket handle to write data to
                                              \param[in] buffer address of buffer to send
                                              \param[in] size number of bytes to write
-                                             \param[in] address peer to send data to
+                                             \param[in] addr peer to send data to
                                              \returns number of bytes written
                                           */