Skip to content

Commit

Permalink
Use the same verb form in help strings
Browse files Browse the repository at this point in the history
  • Loading branch information
soliton- committed Mar 18, 2020
1 parent 1c0f66b commit fc26103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chat_command_handler.hpp
Expand Up @@ -88,7 +88,7 @@ class chat_command_handler : public map_command_handler<chat_command_handler>
register_command("muteall", &chat_command_handler::do_network_send,
_("Mute/Unmute all observers. (toggles)"), "");
register_command("ping", &chat_command_handler::do_network_send,
_("Sends some data to the server. Can be used to verify the network connection and notice disconnects."));
_("Send some data to the server. Can be used to verify the network connection and notice disconnects."));
register_command("report", &chat_command_handler::do_network_send_req_arg,
_("Report abuse, rule violations, etc. to the server moderators. "
"Make sure to mention relevant nicknames, etc."), "");
Expand All @@ -97,7 +97,7 @@ class chat_command_handler : public map_command_handler<chat_command_handler>
_("Send an emotion or personal action in chat."), _("<message>"));
register_alias("emote", "me");
register_command("whisper", &chat_command_handler::do_whisper,
_("Sends a private message. "
_("Send a private message. "
"You cannot send private messages to players in a running game you observe or play in."),
_("<nickname> <message>"));
register_alias("whisper", "msg");
Expand Down

0 comments on commit fc26103

Please sign in to comment.