Skip to content

Commit a06d074

Browse files
committed
Fix type and remove \brief from doxygen comments
1 parent 43355d7 commit a06d074

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/include/llvm/Support/raw_socket_stream.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace llvm {
2525
class raw_socket_stream;
2626

2727
#ifdef _WIN32
28-
/// \brief Ensures proper initialization and cleanup of winsock resources
28+
/// Ensures proper initialization and cleanup of winsock resources
2929
///
3030
/// Make sure that calls to WSAStartup and WSACleanup are balanced.
3131
class WSABalancer {
@@ -36,7 +36,7 @@ class WSABalancer {
3636
#endif // _WIN32
3737

3838
/// \class ListeningSocket
39-
/// \brief Manages a passive (i.e., listening) UNIX domain socket
39+
/// Manages a passive (i.e., listening) UNIX domain socket
4040
///
4141
/// The ListeningSocket class encapsulates a UNIX domain socket that can listen
4242
/// and accept incoming connections. ListeningSocket is portable and supports
@@ -60,13 +60,13 @@ class WSABalancer {
6060
class ListeningSocket {
6161

6262
std::atomic<int> FD;
63-
std::string SocketPath; // Never modified after construction
63+
std::string SocketPath; // Not modified after construction
6464

6565
/// If a seperate thread calls ListeningSocket::shutdown, the ListeningSocket
6666
/// file descriptor (FD) could be closed while ::poll is waiting for it to be
67-
/// ready to perform a I/O operations. ::poll with continue to block even
67+
/// ready to perform a I/O operations. ::poll will continue to block even
6868
/// after FD is closed so use a self-pipe mechanism to get ::poll to return
69-
int PipeFD[2]; // Never modified after construction
69+
int PipeFD[2]; // Not modified after construction other then deconstructor
7070

7171
ListeningSocket(int SocketFD, StringRef SocketPath, int PipeFD[2]);
7272

0 commit comments

Comments
 (0)