From f871d3f10c0fac033fa55532c34e9c406343ae2d Mon Sep 17 00:00:00 2001 From: hunt Date: Mon, 18 Sep 2006 18:01:35 +0000 Subject: 2006-09-18 Martin Hunt * logging.stp (stp_print_binary): New function. * string.stp: Fix docs. --- tapset/string.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tapset/string.stp') diff --git a/tapset/string.stp b/tapset/string.stp index f1666afa..77925d0d 100644 --- a/tapset/string.stp +++ b/tapset/string.stp @@ -17,7 +17,7 @@ function strlen:long(s:string) %{ /* pure */ * @param str string * @param start Starting position. 0 = start of the string * @param length Length of string to return. -* @return Returns the length of the string. +* @return Returns the substring. */ function substr:string(str:string,start:long, length:long) %{ /* pure */ int length = THIS->length + 1 > MAXSTRINGLEN ? MAXSTRINGLEN : THIS->length + 1; -- cgit