Skip to content

Commit f834020

Browse files
committed
fix typo
1 parent 0b2ad08 commit f834020

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/statistics.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports ={
4545
return value ? parseInt(value) : 0;
4646
}
4747

48-
getFLoatValue(label) {
48+
getFloatValue(label) {
4949
let value = this.getStringValue(label);
5050
return value ? parseFloat(value) : 0;
5151
}
@@ -76,7 +76,7 @@ module.exports ={
7676
}
7777

7878
queryExecutionTime() {
79-
return this.getFLoatValue(Label.QUERY_INTERNAL_EXECUTION_TIME);
79+
return this.getFloatValue(Label.QUERY_INTERNAL_EXECUTION_TIME);
8080
}
8181

8282
}

0 commit comments

Comments
 (0)