From 2949f71691eb0a258888c5d2a5bb496d2fe64a23 Mon Sep 17 00:00:00 2001 From: Didi Keke Date: Sun, 5 May 2024 07:54:11 +0000 Subject: [PATCH] fix: typographical error :bug: --- run-selfhosted.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-selfhosted.js b/run-selfhosted.js index 7fe97586..94db315b 100644 --- a/run-selfhosted.js +++ b/run-selfhosted.js @@ -29,7 +29,7 @@ const surrounding_box = (col, lines) => { // Keeping track of WHY certain versions don't work const ver_info = [ { under: 14, reasons: ['optional chaining is not available'] }, - { under: 16, reasons: ['diskusage package ABI mismatch'] }, + { under: 16, reasons: ['disk usage package ABI mismatch'] }, ]; const lowest_allowed = Math.max(...ver_info.map(r => r.under));