Skip to content

Commit

Permalink
fix one java doc issue: extra }
Browse files Browse the repository at this point in the history
Motivation:

There is one extra } for WriteBufferWaterMark's javadoc:
{@linkplain #high}  high water mark}

The generated javadoc will show the content: "the high high water mark}"

Modifications:

remove the }

Result:
The generated javadoc will show the content: "the high water mark" instead of "the high high water mark}"
  • Loading branch information
jiafu1115 authored and normanmaurer committed Apr 8, 2016
1 parent bc6adab commit 84e281c
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,10 @@
package io.netty.channel;

/**
* WriteBufferWaterMark is used to set low water mark (default value is
* {@value #DEFAULT_LOW_WATER_MARK} bytes) and high water
* mark (default value is {@value #DEFAULT_HIGH_WATER_MARK} bytes)
* for write buffer.
* WriteBufferWaterMark is used to set low water mark and high water mark for the write buffer.
* <p>
* If the number of bytes queued in the write buffer exceeds the
* {@linkplain #high} high water mark}, {@link Channel#isWritable()}
* {@linkplain #high high water mark}, {@link Channel#isWritable()}
* will start to return {@code false}.
* <p>
* If the number of bytes queued in the write buffer exceeds the
Expand Down

0 comments on commit 84e281c

Please sign in to comment.