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.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/fmt/sprintf.ts b/std/fmt/sprintf.ts
index dd7ac7f55..d79b9095e 100644
--- a/std/fmt/sprintf.ts
+++ b/std/fmt/sprintf.ts
@@ -3,11 +3,11 @@ enum State {
PERCENT,
POSITIONAL,
PRECISION,
- WIDTH
+ WIDTH,
}
enum WorP {
WIDTH,
- PRECISION
+ PRECISION,
}
class Flags {
@@ -34,7 +34,7 @@ enum F {
mantissa,
fractional,
esign,
- exponent
+ exponent,
}
class Printf {