From 4a2d85cae6ed24d1a9b642ddd2d51ac6f5752290 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 8 Sep 2020 07:58:40 +1000 Subject: [PATCH] docs: Fix simple typo, perentage -> percentage There is a small typo in gulpfile.js. Should read `percentage` rather than `perentage`. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 66a4c84a..571d2508 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -169,7 +169,7 @@ function bytediffFormatter(data) { * Format a number as a percentage * @param {Number} num Number to format as a percent * @param {Number} precision Precision of the decimal - * @return {Number} Formatted perentage + * @return {Number} Formatted percentage */ function formatPercent(num, precision) { return (num * 100).toFixed(precision);