summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-01-03 12:51:51 +0000
committerjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-01-03 12:51:51 +0000
commitff661e17beb0dd03f01d12069af6ee5da26aaac0 (patch)
treef8fdcc383d2a6630a9c897ce619110b88c8e8fcb
parent85203219104a8a262e3e35003e499e6353cebb49 (diff)
Util_snprintf() += clarify comment in example code
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4225 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--doc/ReferenceManual/UtilReference.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ReferenceManual/UtilReference.tex b/doc/ReferenceManual/UtilReference.tex
index d8a16835..1794f896 100644
--- a/doc/ReferenceManual/UtilReference.tex
+++ b/doc/ReferenceManual/UtilReference.tex
@@ -459,8 +459,8 @@ if (len >= N_BUFFER)
/*
* output was truncated (i.e. buffer was too small)
* ( buffer probably doesn't have all the information we wanted
- * but the code is still "safe", in the sense that it's still
- * NUL-terminated, and no buffer-overflow has occured)
+ * but the code is still "safe", in the sense that buffer is
+ * still NUL-terminated, and no buffer-overflow has occured)
*/
}
\end{verbatim}