From 4fb0159385ec79094d39c55bbce0c5921aaf79fe Mon Sep 17 00:00:00 2001 From: tbeu Date: Tue, 24 Oct 2017 20:14:23 +0200 Subject: [PATCH] Remove superfluous backslashes (nothing to escape here) --- doc/userguide.html | 2 +- doc/userguide.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/userguide.html b/doc/userguide.html index b7f6f91..755ee8f 100644 --- a/doc/userguide.html +++ b/doc/userguide.html @@ -1788,7 +1788,7 @@ cellspacing="0" cellpadding="4">

Writes the tpl to a memory buffer. The following two arguments must be a - void\*\* and a size_t*. The function will allocate a buffer and store + void** and a size_t*. The function will allocate a buffer and store its address and length into these locations. The caller is responsible to free() the buffer when done using it.

diff --git a/doc/userguide.txt b/doc/userguide.txt index 7ec30df..e1d00b6 100644 --- a/doc/userguide.txt +++ b/doc/userguide.txt @@ -785,7 +785,7 @@ The first argument is the `tpl_node*` and the second is one of these constants: if non-blocking and the contents cannot be written immediately. `TPL_MEM`:: Writes the tpl to a memory buffer. The following two arguments must be a - `void\*\*` and a `size_t*`. The function will allocate a buffer and store + `void**` and a `size_t*`. The function will allocate a buffer and store its address and length into these locations. The caller is responsible to `free()` the buffer when done using it. `TPL_MEM|TPL_PREALLOCD`::