Skip to content

Commit

Permalink
fixup invalid XML entities in document
Browse files Browse the repository at this point in the history
  • Loading branch information
flier committed Dec 9, 2023
1 parent 899f819 commit ddd683a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/zhttp_request.api
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
Http request that can be received from zhttp_server or sent to zhttp_client.
Class can be reused between send & recv calls.
Class can be reused between send & recv calls.
Headers and Content is being destroyed after every send call.

<constructor>
Expand Down Expand Up @@ -125,7 +125,7 @@
To use the percent symbol, just double it, e.g "%%something".

Example:
if (zhttp_request_match (request, "POST", "/send/%s/%s", &name, &id))
if (zhttp_request_match (request, "POST", "/send/%s/%s", &amp;name, &amp;id))

<argument name = "method" type = "string" />
<argument name = "path" type = "string" variadic = "1" />
Expand Down
2 changes: 1 addition & 1 deletion api/zhttp_response.api
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
Http response that can be received from zhttp_client or sent to zhttp_server.
Class can be reused between send & recv calls.
Class can be reused between send &amp; recv calls.
Headers and Content is being destroyed after every send call.

<constructor>
Expand Down
2 changes: 1 addition & 1 deletion api/zhttp_server.api
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
You can connect as many dealers as you want.
The Server is using simple dealer socket to route the requests.

NOTE: when using libmicrohttpd << 0.9.34 the application might experience
NOTE: when using libmicrohttpd &lt;&lt; 0.9.34 the application might experience
high CPU usage due to the lack of MHD_suspend_connection and
MHD_resume_connection APIs. It is recommended to use this class only with
libmicrohttpd at least 0.9.34 in production.
Expand Down

0 comments on commit ddd683a

Please sign in to comment.