From 6f2a1bde06cebfea85c8fc1cb905330cca8077b4 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Tue, 15 Nov 2016 08:44:59 -0500 Subject: [PATCH] [FOLD] fixups --- doc/design.qbk | 4 ++-- include/beast/http/basic_fields.hpp | 2 +- include/beast/http/message.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/design.qbk b/doc/design.qbk index 461fda915d..698c6c8043 100644 --- a/doc/design.qbk +++ b/doc/design.qbk @@ -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 [ diff --git a/include/beast/http/basic_fields.hpp b/include/beast/http/basic_fields.hpp index 60ea963869..3bc9577424 100644 --- a/include/beast/http/basic_fields.hpp +++ b/include/beast/http/basic_fields.hpp @@ -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. diff --git a/include/beast/http/message.hpp b/include/beast/http/message.hpp index 3fe85aa45e..ebe1723841 100644 --- a/include/beast/http/message.hpp +++ b/include/beast/http/message.hpp @@ -375,7 +375,7 @@ struct message : header //------------------------------------------------------------------------------ #if GENERATING_DOCS -/** Swap two header objectsd. +/** Swap two header objects. @par Requirements `Fields` is @b Swappable.