summaryrefslogtreecommitdiff
path: root/std/fmt/sprintf.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fmt/sprintf.ts')
-rw-r--r--std/fmt/sprintf.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fmt/sprintf.ts b/std/fmt/sprintf.ts
index d79b9095e..fb59b2925 100644
--- a/std/fmt/sprintf.ts
+++ b/std/fmt/sprintf.ts
@@ -206,7 +206,7 @@ class Printf {
default:
const val = parseInt(c);
// most likely parseInt does something stupid that makes
- // it unusuable for this scenario ...
+ // it unusable for this scenario ...
// if we encounter a non (number|*|.) we're done with prec & wid
if (isNaN(val)) {
this.i--;