Author: mturk
Date: Mon Nov 23 09:14:05 2009
New Revision: 883289
URL: http://svn.apache.org/viewvc?rev=883289&view=rev
Log:
fix typos
Modified:
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/PipeIoMode.java
Modified:
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/PipeIoMode.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/PipeIoMode.java?rev=883289&r1=883288&r2=883289&view=diff
==============================================================================
---
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/PipeIoMode.java
(original)
+++
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/PipeIoMode.java
Mon Nov 23 09:14:05 2009
@@ -29,11 +29,11 @@
/** Make read/write non blocking. */
FULL_NONBLOCK( 2),
/** Block the read end of the {...@code Pipe} channel.
- * If set the write side of the pipe in nonblocking.
+ * If set, the write end of the pipe is nonblocking.
*/
READ_BLOCK( 3),
- /** Block the erite end of the {...@code Pipe} channel.
- * If set the read side of the pipe in nonblocking.
+ /** Block the write end of the {...@code Pipe} channel.
+ * If set, the read end of the pipe is nonblocking.
*/
WRITE_BLOCK( 4);