diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-08-24 17:38:57 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-08-24 17:38:57 +0100 |
commit | 7a422b1f2e9cce8856334f9c8b66f04d7c713ff1 (patch) | |
tree | 4fcb8108c3a60b8c21cdf1ec786b894e37c79f5f | |
parent | 6d3d2869bb2105c3a9ffb54ed816d8f53c56c1ed (diff) | |
download | smtp-zig-7a422b1f2e9cce8856334f9c8b66f04d7c713ff1.tar.gz smtp-zig-7a422b1f2e9cce8856334f9c8b66f04d7c713ff1.tar.bz2 smtp-zig-7a422b1f2e9cce8856334f9c8b66f04d7c713ff1.tar.xz smtp-zig-7a422b1f2e9cce8856334f9c8b66f04d7c713ff1.zip |
Fix readme code example
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -11,9 +11,10 @@ TODO: - [ ] Zig package management Code example: -``` +```zig const std = @import("std"); -const client = @import("smtp"); +const smtp = @import("smtp"); +const Client = smtp.Client; pub fn main() !void { const mail = |