remove newline that disagreed with zig fmt

This commit is contained in:
Emil Lerch 2021-06-09 16:06:30 -07:00
parent 68fdeed2fc
commit 578058dfc9
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -45,7 +45,7 @@ fn processFile(arg: []const u8, stdout: anytype, manifest: anytype) !void {
file = try std.fs.cwd().createFile(filename, .{ .truncate = true });
errdefer file.close();
writer = &file.writer();
_ = try writer.write("const smithy = @import(\"smithy.zig\");\n\n\n");
_ = try writer.write("const smithy = @import(\"smithy.zig\");\n\n");
std.log.info("Processing file: {s}", .{arg});
const service_names = generateServicesForFilePath(allocator, ";", arg, writer) catch |err| {
std.log.crit("Error processing file: {s}", .{arg});