summaryrefslogtreecommitdiff
path: root/main/snprintf.h
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-08-09 23:19:55 -0300
committerChristoph M. Becker <cmbecker69@gmx.de>2018-08-12 16:15:45 +0200
commit84b195d9fc5ba2b65ceb46d8ec3d4676bf51a538 (patch)
tree2c3100631a749d0ebc5515f06a950dae8c9d9b3b /main/snprintf.h
parent9ea7d259effc81700e8b7f03f56c47c14201548e (diff)
downloadphp-git-84b195d9fc5ba2b65ceb46d8ec3d4676bf51a538.tar.gz
Fix some misspellings
Diffstat (limited to 'main/snprintf.h')
-rw-r--r--main/snprintf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/snprintf.h b/main/snprintf.h
index 9dd27e662a..d5c5dfa807 100644
--- a/main/snprintf.h
+++ b/main/snprintf.h
@@ -44,7 +44,7 @@ spprintf is the dynamical version of snprintf. It allocates the buffer in size
as needed and allows a maximum setting as snprintf (turn this feature
off by setting max_len to 0). spprintf is a little bit slower than
snprintf and offers possible memory leakes if you miss freeing the
- buffer allocated by the function. Therfore this function should be
+ buffer allocated by the function. Therefore this function should be
used where either no maximum is known or the maximum is much bigger
than normal size required. spprintf always terminates the buffer.