Browse Source

spelling: occurs

Josh Soref 7 years ago
parent
commit
c6aa65d3c6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/lib/cc/json_feed.cc
  2. 1 1
      src/lib/http/request_parser.cc

+ 1 - 1
src/lib/cc/json_feed.cc

@@ -168,7 +168,7 @@ JSONFeed::getNextFromBuffer() {
     unsigned int ev = getNextEvent();
     char c = '\0';
     // The caller should always provide additional data when the
-    // NEED_MORE_DATA_EVT occurrs. If the next event is still
+    // NEED_MORE_DATA_EVT occurs. If the next event is still
     // NEED_MORE_DATA_EVT it indicates that the caller hasn't provided
     // the data.
     if (ev == NEED_MORE_DATA_EVT) {

+ 1 - 1
src/lib/http/request_parser.cc

@@ -236,7 +236,7 @@ HttpRequestParser::getNextFromBuffer() {
     unsigned int ev = getNextEvent();
     char c = '\0';
     // The caller should always provide additional data when the
-    // NEED_MORE_DATA_EVT occurrs. If the next event is still
+    // NEED_MORE_DATA_EVT occurs. If the next event is still
     // NEED_MORE_DATA_EVT it indicates that the caller hasn't provided
     // the data.
     if (ev == NEED_MORE_DATA_EVT) {