HBASE-17174 Addendum fix typo

Signed-off-by: zhangduo <zhangduo@apache.org>
This commit is contained in:
ChiaPing Tsai 2016-12-27 13:57:51 +08:00 committed by zhangduo
parent e18e9a22da
commit 5ffbd4a87d
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public interface RequestController {
/**
* @return The number of running task.
*/
long getNumberOfTsksInProgress();
long getNumberOfTasksInProgress();
/**
* Waits for the running tasks to complete.

View File

@ -246,7 +246,7 @@ class SimpleRequestController implements RequestController {
}
@Override
public long getNumberOfTsksInProgress() {
public long getNumberOfTasksInProgress() {
return tasksInProgress.get();
}