From 59538b66e8b8f17512b3f73c160e5de734a85a8e Mon Sep 17 00:00:00 2001 From: Mikko Lehto Date: Wed, 21 Jun 2017 20:04:47 +0300 Subject: [PATCH] core: parser - fix comment typo [skip ci] --- src/core/parser/parse_param.c | 4 ++-- src/core/parser/parse_param.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/parser/parse_param.c b/src/core/parser/parse_param.c index 31b14c8835c..336bf88a8ac 100644 --- a/src/core/parser/parse_param.c +++ b/src/core/parser/parse_param.c @@ -460,7 +460,7 @@ static inline int parse_param_body(str *_s, param_t *_c, char separator) * t: out parameter * -1: on error * 0: success, but expect a next paramter - * 1: success and exepect no more parameters + * 1: success and expect no more parameters */ static inline int parse_param2( str *_s, pclass_t _c, param_hooks_t *_h, param_t *t, char separator) @@ -533,7 +533,7 @@ static inline int parse_param2( * t: out parameter * -1: on error * 0: success, but expect a next paramter - * 1: success and exepect no more parameters + * 1: success and expect no more parameters */ int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t) { diff --git a/src/core/parser/parse_param.h b/src/core/parser/parse_param.h index 5622df998e5..1007358125a 100644 --- a/src/core/parser/parse_param.h +++ b/src/core/parser/parse_param.h @@ -141,7 +141,7 @@ typedef union param_hooks { * t: out parameter * -1: on error * 0: success, but expect a next paramter - * 1: success and exepect no more parameters + * 1: success and expect no more parameters */ extern int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);