From 1f2d9c8a9250e1b4d9fe34b391c3a1f9891d64f5 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 24 Feb 2006 10:12:55 +0000 Subject: [PATCH] typos, made language harsher --- plugins/include/string.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/include/string.inc b/plugins/include/string.inc index 93516c80..f1424800 100755 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -37,11 +37,11 @@ native add(dest[],len,const src[],max=0); native format(output[] ,len ,const format[] , {Float,Sql,Result,_}:...); /* Same as format(), except does not perform a "copy back" check. - * This means formatex() is faster, but does not allow this type + * This means formatex() is faster, but DOES NOT ALLOW this type * of call: - * formatex(buffer, "%s", buffer) - * formatex(buffer, buffer, buffer) - * formatex(buffer, "%s", buffer[5]) + * formatex(buffer, len, "%s", buffer) + * formatex(buffer, len, buffer, buffer) + * formatex(buffer, len, "%s", buffer[5]) * This is because the output is directly stored into "buffer", * rather than copied back at the end. */