source/io: Fix documentation

The original constructor documentation was copied and pasted incorrectly
from somewhere else.

Change-Id: Iac8dbd197e710d4079400c99c368f07c32f90a9d
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/src/sdeventplus/source/io.hpp b/src/sdeventplus/source/io.hpp
index f26eac8..724c633 100644
--- a/src/sdeventplus/source/io.hpp
+++ b/src/sdeventplus/source/io.hpp
@@ -18,9 +18,10 @@
     /** @brief Adds a new IO source handler to the Event
      *         Executes the callback upon events occurring
      *
-     *  @param[in] name   - The name identifying the create function
-     *  @param[in] create - The SdEvent function called to create the source
-     *  @param[in] event  - The event to attach the handler
+     *  @param[in] event    - The event to attach the handler
+     *  @param[in] fd       - The file descriptor producing the events
+     *  @param[in] events   - The event mask passed which determines triggers
+     *                        See epoll_ctl(2) for more info on the mask
      *  @param[in] callback - The function executed on event dispatch
      *  @throws SdEventError for underlying sd_event errors
      */