From ec01bddfce0156f501f359dbc1efd25b5f596e85 Mon Sep 17 00:00:00 2001 From: Stephen Webb Date: Wed, 8 May 2024 11:37:04 +1000 Subject: [PATCH] Correct spelling and grammar --- src/main/include/log4cxx/net/telnetappender.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/include/log4cxx/net/telnetappender.h b/src/main/include/log4cxx/net/telnetappender.h index e4e8ec6f0..1805ea55b 100644 --- a/src/main/include/log4cxx/net/telnetappender.h +++ b/src/main/include/log4cxx/net/telnetappender.h @@ -120,26 +120,26 @@ class LOG4CXX_EXPORT TelnetAppender : public AppenderSkeleton void setPort(int port1); /** - The number of allowed concurrent conections. + The number of allowed concurrent connections. \sa setOption */ int getMaxConnections() const; /** - Set the number of allowed concurrent conections to \c newValue. + Set the number of allowed concurrent connections to \c newValue. \sa setOption */ void setMaxConnections(int newValue); - /** shuts down the appender. */ + /** Shutdown this appender. */ void close() override; protected: - /** Handles a log event. For this appender, that means writing the - message to each connected client. */ + /** Send \c event to each connected client. + */ void append(const spi::LoggingEventPtr& event, helpers::Pool& p) override; //---------------------------------------------------------- SocketHandler: