From 54d48c9752abebae2a085a2d2cfd34772c2cdf49 Mon Sep 17 00:00:00 2001 From: 00JCIV00 <68087632+00JCIV00@users.noreply.github.com> Date: Wed, 23 Oct 2024 11:09:17 -0400 Subject: [PATCH] Update README.md for Logger Example - Changed Command Name to 'logger'. - Added a Command `examples` field. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c1012e5..061198b 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,9 @@ logger --log-level info // ... pub const CommandT = cova.Command.Custom(.{...}); pub const setup_cmd = CommandT{ - .name = "log_enum", + .name = "logger", .description = "A small demo of using the Log Level Enum as an Option.", + .examples = &.{ "logger --log-level info" }, .opts = &.{ .{ .name = "log_level",