diff options
Diffstat (limited to 'src/event_main.cc')
| -rw-r--r-- | src/event_main.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/event_main.cc b/src/event_main.cc index ffcf4b5..304db14 100644 --- a/src/event_main.cc +++ b/src/event_main.cc @@ -80,7 +80,9 @@ bool create(EventUtils* utils, std::map<std::string, std::string>& data, std::vector<std::string>& args) { if (args.size() < 2) { - Http::response(200, "Usage: create NAME START [TEXT]"); + Http::response(200, "Usage: create NAME START [TEXT]\n" + "> START can be either in YYYY-MM-DD HH:MM format " + "or DAY HH:MM format (for example Wednesday 17:30).\n"); return true; } std::string name, text; |
