improve commnts

This commit is contained in:
Mitchell Hashimoto
2022-04-16 11:12:38 -07:00
parent 82a4aef1fa
commit 74e04355a0
2 changed files with 12 additions and 6 deletions

View File

@@ -162,7 +162,7 @@ test "Command: pre exec" {
}
test "Command: redirect stdout to file" {
const td = try TempDir.create();
const td = try TempDir.init();
defer td.deinit();
var stdout = try td.dir.createFile("stdout.txt", .{ .read = true });
defer stdout.close();