docs: fix simple typo, destinatipon -> destination

There is a small typo in mxml-string.c.

Should read `destination` rather than `destinatipon`.
pull/274/head
Tim Gates 4 years ago
parent dd55272944
commit 38a533c2eb
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05
  1. 4
      mxml-string.c

@ -114,7 +114,7 @@ _mxml_strdupf(const char *format, /* I - Printf-style format string */
size_t /* O - Number of bytes copied */
_mxml_strlcat(char *dst, /* I - Destination buffer */
const char *src, /* I - Source string */
size_t dstsize) /* I - Size of destinatipon buffer */
size_t dstsize) /* I - Size of destination buffer */
{
size_t srclen; /* Length of source string */
size_t dstlen; /* Length of destination string */
@ -160,7 +160,7 @@ _mxml_strlcat(char *dst, /* I - Destination buffer */
size_t /* O - Number of bytes copied */
_mxml_strlcpy(char *dst, /* I - Destination buffer */
const char *src, /* I - Source string */
size_t dstsize) /* I - Size of destinatipon buffer */
size_t dstsize) /* I - Size of destination buffer */
{
size_t srclen; /* Length of source string */

Loading…
Cancel
Save