diff options
author | Tom Tromey <tromey@redhat.com> | 2007-01-30 19:58:19 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-01-30 19:58:19 +0000 |
commit | e4cf973dd9cccacb662af8c4f9ed5aa35573074a (patch) | |
tree | 0d387c0b2a39494ccac478e763d9e0b6a4a8d6ea /gcc/java/gcj.texi | |
parent | 13a89f0af548dfeab44ca585ef99d73f38d41994 (diff) | |
download | gcc-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.texi | 6 |
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}) |