Skip to content

Commit

Permalink
[FOLD] fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
vinniefalco committed Nov 15, 2016
1 parent 15cf021 commit 6f2a1bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/design.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -454,9 +454,9 @@ start. Other design goals:
appended to the sequence when existing allocations are filled. Beast
does not impose any particular memory management model on callers. The
__basic_streambuf__ provided by beast supports standard allocators through
a template argument. Use the __streambuf__ that comes with beast,
a template argument. Use the __DynamicBuffer__ that comes with beast,
customize the allocator if you desire, or provide your own type that
meets the requirements of __DynamicBuffer__.
meets the requirements.

[table
[
Expand Down
2 changes: 1 addition & 1 deletion include/beast/http/basic_fields.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace http {
This container is designed to store the field value pairs that make
up the fields and trailers in a HTTP message. Objects of this type
are iterable, which each element holding the field name and field
are iterable, with each element holding the field name and field
value.
Field names are stored as-is, but comparisons are case-insensitive.
Expand Down
2 changes: 1 addition & 1 deletion include/beast/http/message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ struct message : header<isRequest, Fields>
//------------------------------------------------------------------------------

#if GENERATING_DOCS
/** Swap two header objectsd.
/** Swap two header objects.
@par Requirements
`Fields` is @b Swappable.
Expand Down

0 comments on commit 6f2a1bd

Please sign in to comment.