summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2015-06-24 12:45:12 +0200
committerJoel Klinghed <the_jk@yahoo.com>2015-06-24 12:45:12 +0200
commit021dbcb976f9534750e9dc42812f1a66f47a6392 (patch)
treeb19569151020103eb6351da24dbbfda01a668e9d /src
parent6bd81f5f0b483815e6afcc8b11319c3ed9f08d8f (diff)
Add missing newline
Diffstat (limited to 'src')
-rw-r--r--src/event_main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event_main.cc b/src/event_main.cc
index c2bf439..093ed76 100644
--- a/src/event_main.cc
+++ b/src/event_main.cc
@@ -525,13 +525,13 @@ bool help(std::vector<std::string>& args) {
} else if (args.front() == "going") {
ss << "Usage: going [user USER] [INDEX] [NOTE]" << std::endl;
ss << "Join an event specified by index (default is next event)"
- << " and add an optional NOTE";
+ << " and add an optional NOTE" << std::endl;
ss << "If USER is specified, you're saying that USER is joining"
<< " instead of yourself - use with caution";
} else if (args.front() == "!going") {
ss << "Usage: !going [user USER] [INDEX] [NOTE]" << std::endl;
ss << "Un-join an event specified by index (default is next event)"
- << " and add an optional NOTE";
+ << " and add an optional NOTE" << std::endl;
ss << "If USER is specified, you're saying that USER is not going"
<< " instead of yourself - use with caution";
} else {