Browse Source

Fix javadoc typo in decreaseThreadNum() method of Node interface (#296)

master
leitao Eric Zhao 6 years ago
parent
commit
512b27bba3
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/node/Node.java

+ 2
- 1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/node/Node.java View File

@@ -26,6 +26,7 @@ import com.alibaba.csp.sentinel.node.metric.MetricNode;
* @author qinan.qn
* @author leyou
* @author Eric Zhao
* @author leitao
*/
public interface Node {

@@ -147,7 +148,7 @@ public interface Node {
void increaseThreadNum();

/**
* Increase current thread count.
* Decrease current thread count.
*/
void decreaseThreadNum();



Loading…
Cancel
Save