Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: rename sanitize to sanitise in variable name
Co-authored-by: Bartlomiej Obecny <bobecny@gmail.com>
  • Loading branch information
weyert and obecny authored Apr 19, 2021
commit caa86e90822fbd9d2ca67db068e87aa62f200972
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function stringify(
let labelsStr = '';

for (const [key, val] of Object.entries(labels)) {
const santisedLabelName = sanitizePrometheusMetricName(key);
const sanitisedLabelName = sanitisePrometheusMetricName(key);
hasLabel = true;
labelsStr += `${
labelsStr.length > 0 ? ',' : ''
Expand Down