aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/gcj.texi
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2007-01-30 19:58:19 +0000
committerTom Tromey <tromey@gcc.gnu.org>2007-01-30 19:58:19 +0000
commite4cf973dd9cccacb662af8c4f9ed5aa35573074a (patch)
tree0d387c0b2a39494ccac478e763d9e0b6a4a8d6ea /gcc/java/gcj.texi
parent13a89f0af548dfeab44ca585ef99d73f38d41994 (diff)
downloadgcc-e4cf973dd9cccacb662af8c4f9ed5aa35573074a.zip
gcc-e4cf973dd9cccacb662af8c4f9ed5aa35573074a.tar.gz
gcc-e4cf973dd9cccacb662af8c4f9ed5aa35573074a.tar.bz2
* gcj.texi (Strings): Fix documentation for JvNewString.
From-SVN: r121356
Diffstat (limited to 'gcc/java/gcj.texi')
-rw-r--r--gcc/java/gcj.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi
index b978958..aa86ba4 100644
--- a/gcc/java/gcj.texi
+++ b/gcc/java/gcj.texi
@@ -2083,9 +2083,9 @@ working with Java Java @code{String} objects.
The names and interfaces are analogous to those of @acronym{JNI}.
-@deftypefun jstring JvNewString (const char* @var{chars}, jsize @var{len})
-Returns a Java @code{String} object with characters from the C string
-@var{chars} up to the index @var{len} in that array.
+@deftypefun jstring JvNewString (const jchar* @var{chars}, jsize @var{len})
+Returns a Java @code{String} object with characters from the array of
+Unicode characters @var{chars} up to the index @var{len} in that array.
@end deftypefun
@deftypefun jstring JvNewStringLatin1 (const char* @var{bytes}, jsize @var{len})