diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-16 08:39:41 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-10-16 08:39:41 -0400 |
commit | 591420df20211c19c687bc8abcb9234732bbc529 (patch) | |
tree | 25b5cab33ebedd833f481e13c98e20d067ea7c7b /src/lib/process | |
parent | 98735c40b6f503b296f7e6fefae36da24b33616e (diff) | |
download | tor-591420df20211c19c687bc8abcb9234732bbc529.tar.gz tor-591420df20211c19c687bc8abcb9234732bbc529.zip |
Doxygen: fix unrecognized commands.
Doxygen seems to interpret anything starting with \ as a command,
even when we don't mean it that way.
Diffstat (limited to 'src/lib/process')
-rw-r--r-- | src/lib/process/process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/process/process.h b/src/lib/process/process.h index 05c091a5bf..b28f55e0a1 100644 --- a/src/lib/process/process.h +++ b/src/lib/process/process.h @@ -35,8 +35,8 @@ typedef enum { const char *process_status_to_string(process_status_t status); typedef enum { - /** Pass complete \n-terminated lines to the - * callback (with the \n or \r\n removed). */ + /** Pass complete newline-terminated lines to the + * callback (with the LF or CRLF removed). */ PROCESS_PROTOCOL_LINE, /** Pass the raw response from read() to the callback. */ |