Minor typo

master
tgschultz 2018-05-30 10:24:27 -05:00
parent 8fc52a94f4
commit 4e1d0a59fa
1 changed files with 1 additions and 1 deletions

View File

@ -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);