Skip to content

Commit d7e7dab

Browse files
committed
Fixing header sizes of sections in HTTP Server API documentation.
1 parent d94e630 commit d7e7dab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libs/network/doc/reference_http_server.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ More information about the internals of the `Asynchronous Servers`_ can be found
9999
in the following section.
100100

101101
Synchronous Servers
102-
~~~~~~~~~~~~~~~~~~~
102+
-------------------
103103

104104
The synchronous server implementation is represented by the template ``server``
105105
in namespace ``boost::network::http``. The ``server`` template takes in a single
@@ -140,7 +140,7 @@ application, which means you can expose almost all your application logic
140140
through the Handler type, which you can also initialize appropriately.
141141

142142
API Documentation
143-
`````````````````
143+
~~~~~~~~~~~~~~~~~
144144

145145
The following sections assume that the following file has been included:
146146

@@ -156,15 +156,15 @@ And that the following typedef's have been put in place:
156156
typedef boost::network::http::server<handler_type> http_server;
157157

158158
Constructor
159-
***********
159+
```````````
160160

161161
``http_server(address, port, handler)``
162162
Construct an HTTP Server instance, passing in the address and port as
163163
``std::string const &`` and handler being of type ``handler_type`` but
164164
passed in as an lvalue reference.
165165

166166
Public Members
167-
**************
167+
``````````````
168168

169169
The following definitions assume that a properly constructed ``http_server``
170170
instance has been constructed in the following manner:
@@ -188,12 +188,12 @@ instance has been constructed in the following manner:
188188
Stop the HTTP Server acceptor and wait for all pending requests to finish.
189189

190190
Asynchronous Servers
191-
~~~~~~~~~~~~~~~~~~~~
191+
--------------------
192192

193193
.. FIXME show the table of tags that enable the asynchronous implementation.
194194
195195
API Documentation
196-
`````````````````
196+
~~~~~~~~~~~~~~~~~
197197

198198
.. FIXME show the table of publicly-accessible member functions.
199199

0 commit comments

Comments
 (0)