diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-11-07 20:52:39 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-11-07 20:52:39 -0500 |
commit | d1e684126176214b65399034c96b6f52189b2b72 (patch) | |
tree | 5866b7f3a15945a73b946443fbd490fc8f4cc2d8 /exercises/089_async6.zig | |
parent | 266449b1dd8e5e89887aa84c2d10270cdd6c7936 (diff) | |
parent | dedd787f2dd0badc03caa1299adaf57eaeaae156 (diff) | |
download | ziglings-d1e684126176214b65399034c96b6f52189b2b72.tar.gz ziglings-d1e684126176214b65399034c96b6f52189b2b72.tar.bz2 ziglings-d1e684126176214b65399034c96b6f52189b2b72.tar.xz ziglings-d1e684126176214b65399034c96b6f52189b2b72.zip |
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises/089_async6.zig')
-rw-r--r-- | exercises/089_async6.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/089_async6.zig b/exercises/089_async6.zig index 755b438..8bf50e9 100644 --- a/exercises/089_async6.zig +++ b/exercises/089_async6.zig @@ -44,7 +44,7 @@ pub fn main() void { var com_title = com_frame; var org_title = org_frame; - print(".com: {s}, .org: {s}.\n", .{com_title, org_title}); + print(".com: {s}, .org: {s}.\n", .{ com_title, org_title }); } fn getPageTitle(url: []const u8) []const u8 { |