messages server REFACTOR doxygen typo and fn name
diff --git a/src/messages_server.h b/src/messages_server.h
index f783bf8..63f6ef1 100644
--- a/src/messages_server.h
+++ b/src/messages_server.h
@@ -297,11 +297,11 @@
  * @brief Create Event Notification object to be sent to the subscribed client(s).
  *
  * @param[in] event Notification data tree (valid as LYD_OPT_NOTIF) from libyang. The tree is directly used in created
- * object, so the caller is supposed to not free the tree on its own, but only via freeng the created object.
+ * object, so the caller is supposed to not free the tree on its own, but only via freeing the created object.
  * @param[in] eventtime YANG dateTime format value of the time when the event was generated by the event source.
  * Caller can use nc_timespec2datetime() to create the value from a timespec value.
  * @param[in] paramtype How to further manage data parameters.
- * @return Newly created structure of the Event Notification object to be sent to the clients via nc_server_send_notif()
+ * @return Newly created structure of the Event Notification object to be sent to the clients via nc_server_notif_send()
  * and freed using nc_server_notif_free().
  */
 struct nc_server_notif *nc_server_notif_new(struct lyd_node *event, char *eventtime, NC_PARAMTYPE paramtype);
@@ -310,8 +310,8 @@
  * @brief Send NETCONF Event Notification via the session.
  *
  * @param[in] session NETCONF session where the Event Notification will be written.
- * @param[in] notif NETCOFN Notification object to send via specified session. Object can be created by
- *            nc_notif_new() function.
+ * @param[in] notif NETCONF Notification object to send via specified session. Object can be created by
+ *            nc_server_notif_new() function.
  * @param[in] timeout Timeout for writing in milliseconds. Use negative value for infinite
  *            waiting and 0 for return if data cannot be sent immediately.
  * @return #NC_MSG_NOTIF on success,