diff --git a/src/main/java/org/jboss/netty/channel/FileRegion.java b/src/main/java/org/jboss/netty/channel/FileRegion.java
index 5de0ac28e0..0cf66ee6fd 100644
--- a/src/main/java/org/jboss/netty/channel/FileRegion.java
+++ b/src/main/java/org/jboss/netty/channel/FileRegion.java
@@ -33,13 +33,13 @@ import org.jboss.netty.util.ExternalResourceReleasable;
* zero-copy file transfer.
*
* - 5103988
- * - FileChannel.transferTo should return -1 for EAGAIN instead throws IOException
+ * - FileChannel.transferTo() should return -1 for EAGAIN instead throws IOException
* - 6253145
- * - FileChannel.transferTo on Linux fails when going beyond 2GB boundary
+ * - FileChannel.transferTo() on Linux fails when going beyond 2GB boundary
* - 6427312
- * - FileChannel.transferTo() throws IOException "system call interrupted
+ * - FileChannel.transferTo() throws IOException "system call interrupted"
* - 6470086
- * - FileChannel.transferTo(2147483647, 1, channel) cause "Value too large" exception
+ * - FileChannel.transferTo(2147483647, 1, channel) causes "Value too large" exception
*
*
* @author The Netty Project