HBASE-19244 Fix simple typos in HBASE-15518 descriptions (Clay B.)

This commit is contained in:
tedyu 2017-11-13 11:28:41 -08:00
parent aa151cfb9e
commit 3b8d95ad8b
1 changed files with 3 additions and 3 deletions

View File

@ -25,11 +25,11 @@ package org.apache.hadoop.hbase.regionserver;
public interface MetricsTableSource extends Comparable<MetricsTableSource> {
String READ_REQUEST_COUNT = "readRequestCount";
String READ_REQUEST_COUNT_DESC = "Number fo read requests";
String READ_REQUEST_COUNT_DESC = "Number of read requests";
String WRITE_REQUEST_COUNT = "writeRequestCount";
String WRITE_REQUEST_COUNT_DESC = "Number fo write requests";
String WRITE_REQUEST_COUNT_DESC = "Number of write requests";
String TOTAL_REQUEST_COUNT = "totalRequestCount";
String TOTAL_REQUEST_COUNT_DESC = "Number fo total requests";
String TOTAL_REQUEST_COUNT_DESC = "Number of total requests";
String MEMSTORE_SIZE = "memstoreSize";
String MEMSTORE_SIZE_DESC = "The size of memory stores";
String STORE_FILE_SIZE = "storeFileSize";