Merge pull request #274 from timgates42/bugfix_typo_destination

docs: fix simple typo, destinatipon -> destination
This commit is contained in:
Michael R Sweet 2020-10-11 18:17:52 -04:00 committed by GitHub
commit 5490479ae7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 */