OCaml: Implement log contexts

This commit is contained in:
Juno Takano 2025-05-16 22:53:33 -03:00
commit c6c92c0a32
8 changed files with 29 additions and 25 deletions

View file

@ -23,7 +23,7 @@ let interpret (past : Schema.schema) (arguments : string list) : Schema.schema =
{
past.output with
main =
"Unknown command: " ^ head ^ "\n" ^ past.meta.help.short;
"Unrecognized command: " ^ head ^ "\n" ^ past.meta.help.short;
};
meta = { past.meta with status = 1 };
}