Change indentation amount from 4 to 2
This commit is contained in:
parent
a797728845
commit
0209e194a5
1 changed files with 6 additions and 6 deletions
|
@ -154,7 +154,7 @@ fn Writer(comptime ChildWriter: type) type {
|
|||
}
|
||||
|
||||
pub fn emitIndent(self: *Self) !void {
|
||||
try self.child_writer.writeByteNTimes(' ', self.indentation * 4);
|
||||
try self.child_writer.writeByteNTimes(' ', self.indentation * 2);
|
||||
if (self.indentation > 0) self.preceded_by_space = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue