From 7a422b1f2e9cce8856334f9c8b66f04d7c713ff1 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Thu, 24 Aug 2023 17:38:57 +0100 Subject: Fix readme code example --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b0ab93..c61fd3d 100644 --- a/README.md +++ b/README.md @@ -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 = -- cgit v1.2.3-ZIG