aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/FileOutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/io/FileOutputStream.java')
-rw-r--r--libjava/java/io/FileOutputStream.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/io/FileOutputStream.java b/libjava/java/io/FileOutputStream.java
index d81d6d1..1702ffe 100644
--- a/libjava/java/io/FileOutputStream.java
+++ b/libjava/java/io/FileOutputStream.java
@@ -72,7 +72,7 @@ public class FileOutputStream extends OutputStream
* one exists) with the name of the file to be opened. An exception is
* thrown if writing is not allowed.
*
- * @param name The name of the file this stream should write to
+ * @param path The name of the file this stream should write to
* @param append <code>true</code> to append bytes to the end of the file,
* or <code>false</code> to write bytes to the beginning
*
@@ -95,7 +95,7 @@ public class FileOutputStream extends OutputStream
* one exists) with the name of the file to be opened. An exception is
* thrown if writing is not allowed.
*
- * @param name The name of the file this stream should write to
+ * @param path The name of the file this stream should write to
*
* @exception SecurityException If write access to the file is not allowed
* @exception FileNotFoundException If a non-security error occurs
@@ -176,7 +176,7 @@ public class FileOutputStream extends OutputStream
* one exists) with the specified <code>FileDescriptor</code> as an argument.
* An exception is thrown if writing is not allowed.
*
- * @param file The <code>FileDescriptor</code> this stream should write to
+ * @param fdObj The <code>FileDescriptor</code> this stream should write to
*
* @exception SecurityException If write access to the file is not allowed
*/