summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/eval.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.zig b/src/eval.zig
index 6c9a449..bc39887 100644
--- a/src/eval.zig
+++ b/src/eval.zig
@@ -163,7 +163,7 @@ fn executeCommandWithOutput(command: Command, allocator: Allocator, output_captu
return CommandStatus{ .Code = 0 };
},
.Ver => {
- const output = "DOSE Version 6.22\n";
+ const output = "MB-DOSE Version 6.22\n";
if (output_capture) |capture| {
try capture.write(output);
} else {