Skip to content

Commit 0d5fe8b

Browse files
author
Matt Jacobs
committed
Fix typo in method name
1 parent 9ca80ab commit 0d5fe8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
// escape string used in jQuery & d3 selectors
9494
data.escapedName = data.name.replace(/([ !"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g,'\\$1');
9595
// do math
96-
converAllAvg(data);
96+
convertAllAvg(data);
9797
calcRatePerSecond(data);
9898
}
9999

@@ -110,7 +110,7 @@
110110
*
111111
* We want to do this on any numerical values where we want per instance rather than cluster-wide sum.
112112
*/
113-
function converAllAvg(data) {
113+
function convertAllAvg(data) {
114114
convertAvg(data, "errorPercentage", true);
115115
convertAvg(data, "latencyExecute_mean", false);
116116
convertAvg(data, "latencyTotal_mean", false);

0 commit comments

Comments
 (0)