summaryrefslogtreecommitdiff
path: root/deps/http-parser/http_parser.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-12-05 08:13:43 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2014-12-05 08:13:43 +0100
commitd43c7bd050cd461b13f4b5aa30f14010c5b2b611 (patch)
tree87458931baf535d020d10a782866e474b7b3a4dc /deps/http-parser/http_parser.c
parent30ec05260d5fe2074f19b7f47021455cf10a7014 (diff)
downloadlibgit2-d43c7bd050cd461b13f4b5aa30f14010c5b2b611.tar.gz
Rever spelling fixes for dependencies
This is not our code and it adds unecessary changes from the upstream code.
Diffstat (limited to 'deps/http-parser/http_parser.c')
-rw-r--r--deps/http-parser/http_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/http-parser/http_parser.c b/deps/http-parser/http_parser.c
index c42e5010b..203530254 100644
--- a/deps/http-parser/http_parser.c
+++ b/deps/http-parser/http_parser.c
@@ -1569,7 +1569,7 @@ size_t http_parser_execute (http_parser *parser,
/* Here we call the headers_complete callback. This is somewhat
* different than other callbacks because if the user returns 1, we
* will interpret that as saying that this message has no body. This
- * is needed for the annoying case of receiving a response to a HEAD
+ * is needed for the annoying case of recieving a response to a HEAD
* request.
*
* We'd like to use CALLBACK_NOTIFY_NOADVANCE() here but we cannot, so