Skip to content

Commit

Permalink
Merge pull request nghttp2#1550 from jktjkt/docs-asio-fix-typos
Browse files Browse the repository at this point in the history
docs: asio: fix some typos
  • Loading branch information
tatsuhiro-t authored Feb 8, 2021
2 parents 3239c5e + 5b9892a commit 5b587e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/includes/nghttp2/asio_http2_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class response {
// Returns content-length. -1 if it is unknown.
int64_t content_length() const;

// Returns the response header fields. The pusedo header fields,
// which start with colon (:), are exluced from this list.
// Returns the response header fields. The pseudo header fields,
// which start with colon (:), are excluded from this list.
const header_map &header() const;

// Application must not call this directly.
Expand Down Expand Up @@ -107,8 +107,8 @@ class request {
// Returns request URI, split into components.
const uri_ref &uri() const;

// Returns request header fields. The pusedo header fields, which
// start with colon (:), are exluced from this list.
// Returns request header fields. The pseudo header fields, which
// start with colon (:), are excluded from this list.
const header_map &header() const;

// Application must not call this directly.
Expand Down
4 changes: 2 additions & 2 deletions src/includes/nghttp2/asio_http2_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class request {
request();
~request();

// Returns request header fields. The pusedo header fields, which
// start with colon (:), are exluced from this list.
// Returns request header fields. The pseudo header fields, which
// start with colon (:), are excluded from this list.
const header_map &header() const;

// Returns method (e.g., GET).
Expand Down

0 comments on commit 5b587e8

Please sign in to comment.