commit 89e73e62ae55c20a53105931e5687c7721db02e0
parent f5d7b2fc925e4ba7c2268cb77b754a2fe19d5f13
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Mon, 24 Oct 2022 12:25:02 +0300
postprocessor.h: fixed typos in doxy
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/microhttpd/postprocessor.h b/src/microhttpd/postprocessor.h
@@ -74,13 +74,13 @@ enum RN_State
RN_OptN = 1,
/**
- * Expect LFCR (and only LFCR). As always, we also
+ * Expect CRLF (and only CRLF). As always, we also
* expect only LF or only CR.
*/
RN_Full = 2,
/**
- * Expect either LFCR or '--'LFCR. If '--'LFCR, transition into dash-state
+ * Expect either CRLF or '--'CRLF. If '--'CRLF, transition into dash-state
* for the main state machine
*/
RN_Dash = 3,
@@ -222,9 +222,9 @@ struct MHD_PostProcessor
enum PP_State state;
/**
- * Side-state-machine: skip LRCR (or just LF).
+ * Side-state-machine: skip CRLF (or just LF).
* Set to 0 if we are not in skip mode. Set to 2
- * if a LFCR is expected, set to 1 if a CR should
+ * if a CRLF is expected, set to 1 if a CR should
* be skipped if it is the next character.
*/
enum RN_State skip_rn;