diff options
| author | tgschultz <tgschultz@gmail.com> | 2018-05-30 10:24:27 -0500 |
|---|---|---|
| committer | tgschultz <tgschultz@gmail.com> | 2018-05-30 10:24:27 -0500 |
| commit | 4e1d0a59faea8ca9a9c28a876bc448f1d2f46a17 (patch) | |
| tree | 015686491a0a5ec6021a567545a06eefcb12d215 /std | |
| parent | 8fc52a94f46295ee821708c44a165803207e85a6 (diff) | |
| download | zig-4e1d0a59faea8ca9a9c28a876bc448f1d2f46a17.tar.gz zig-4e1d0a59faea8ca9a9c28a876bc448f1d2f46a17.zip | |
Minor typo
Diffstat (limited to 'std')
| -rw-r--r-- | std/fmt/index.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fmt/index.zig b/std/fmt/index.zig index 011b5d7c25..eb52cead90 100644 --- a/std/fmt/index.zig +++ b/std/fmt/index.zig @@ -64,7 +64,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context), }, else => @compileError("Single '}' encountered in format string"), }, - State.FormatString => switch(c) { + State.FormatString => switch (c) { '}' => { const s = start_index + 1; try formatType(args[next_arg], fmt[s..i], context, Errors, output); |
