From 3f454120869aba9b75e57ccb2668c45bc5cdbbd8 Mon Sep 17 00:00:00 2001 From: Hyunjun Kim Date: Tue, 9 Apr 2024 20:51:20 +0900 Subject: [PATCH] Update documentation typo --- Source/Server/Server.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Server/Server.hpp b/Source/Server/Server.hpp index 49a6df9..65c8b06 100644 --- a/Source/Server/Server.hpp +++ b/Source/Server/Server.hpp @@ -30,7 +30,7 @@ namespace IRC /** @class Server * @internal - * @attention See [ \ref irc_server_event_loop_process_flow ] before reading implementation details. + * @note See [ \ref irc_server_event_loop_process_flow ] before reading implementation details. * * @dot * digraph ServerClientChannel { @@ -121,8 +121,8 @@ namespace IRC * @details Initialize kqueue and resources and register listen socket to kqueue. * And then call eventLoop() to start the server. * - * @note Blocking until the server is terminated. - * @warning All non-static methods must be called after this function is called. + * @note \li Blocking until the server is terminated. + * \li All non-static methods must be called after this function is called. */ EIrcErrorCode Startup();