about summary refs log tree commit diff stats
path: root/src/command/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/command.c')
-rw-r--r--src/command/command.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/command/command.c b/src/command/command.c
index f057ba62..13b60b33 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -332,7 +332,7 @@ static struct cmd_t command_defs[] =
           "nick value     : Nickname to use in the room",
           "password value : Password if the room requires it.",
           "",
-          "If no nickname is specfied the account preference 'muc.nick' will be used which by default is the localpart of your JID.",
+          "If no nickname is specified the account preference 'muc.nick' will be used which by default is the localpart of your JID.",
           "If the room doesn't exist, and the server allows it, a new one will be created.",
           "",
           "Example: /join jdev@conference.jabber.org",
@@ -365,7 +365,7 @@ static struct cmd_t command_defs[] =
         { "/invites", "Show outstanding chat room invites.",
         { "/invites",
           "--------",
-          "Show all rooms that you have been invited to, and not accepted or declind.",
+          "Show all rooms that you have been invited to, and not accepted or declined.",
           NULL } } },
 
     { "/decline",
@@ -373,7 +373,7 @@ static struct cmd_t command_defs[] =
         { "/decline room", "Decline a chat room invite.",
         { "/decline room",
           "-------------",
-          "Decline a chat room ivivation.",
+          "Decline a chat room invitation.",
           "",
           "room : The room for the invite you wish to decline.",
           NULL } } },
@@ -573,9 +573,9 @@ static struct cmd_t command_defs[] =
           "Manage subscriptions to contact presence.",
           "",
           "request [jid] : Send a subscription request to the user.",
-          "allow [jid]   : Approve a contact's subscription reqeust.",
+          "allow [jid]   : Approve a contact's subscription request.",
           "deny [jid]    : Remove subscription for a contact, or deny a request",
-          "show [jid]    : Show subscriprion status for a contact.",
+          "show [jid]    : Show subscription status for a contact.",
           "sent          : Show all sent subscription requests pending a response.",
           "received      : Show all received subscription requests awaiting your response.",
           "",
@@ -613,7 +613,7 @@ static struct cmd_t command_defs[] =
           "  any         : Contacts with any status (same as calling with no argument).",
           "role        : moderator|participant|visitor",
           "affiliation : owner|admin|member",
-          "group       : Filter the results by the specfied group.",
+          "group       : Filter the results by the specified group.",
           NULL } } },
 
     { "/close",
@@ -701,20 +701,20 @@ static struct cmd_t command_defs[] =
 
     { "/notify",
         cmd_notify, parse_args, 2, 3, &cons_notify_setting,
-        { "/notify [type value]|[type setting value]", "Control various desktop noficiations.",
+        { "/notify [type value]|[type setting value]", "Control various desktop notifications.",
         { "/notify [type value]|[type setting value]",
           "-----------------------------------------",
           "Settings for various kinds of desktop notifications.",
           "",
-          "message on|off         : Notificaitons for regular messages.",
+          "message on|off         : Notifications for regular messages.",
           "message current on|off : Whether messages in the current window trigger notifications.",
           "message text on|off    : Show message text in message notifications.",
-          "room on|off|mention    : Notificaitons for chat room messages.",
+          "room on|off|mention    : Notifications for chat room messages.",
           "room current on|off    : Whether chat room messages in the current window trigger notifications.",
           "room text on|off       : Show message text in chat room message notifications.",
           "remind seconds         : Notification reminder period for unread messages, use 0 to disable.",
           "typing on|off          : Notifications when contacts are typing.",
-          "typing current of|off  : Whether typing notifications are triggerd for the current window.",
+          "typing current of|off  : Whether typing notifications are triggered for the current window.",
           "invite on|off          : Notifications for chat room invites.",
           "sub on|off             : Notifications for subscription requests.",
           "",
@@ -860,7 +860,7 @@ static struct cmd_t command_defs[] =
           "libver                             : Show which version of the libotr library is being used.",
           "policy manual|opportunistic|always : Set the global OTR policy.",
           "secret [secret]                    : Verify a contacts identity using a shared secret.",
-          "question [question] [answer]       : Verify a contacts identity using a question and expected anwser.",
+          "question [question] [answer]       : Verify a contacts identity using a question and expected answer.",
           "answer [answer]                    : Respond to a question answer verification request with your answer.",
           NULL } } },
 
@@ -925,9 +925,9 @@ static struct cmd_t command_defs[] =
     { "/ping",
         cmd_ping, parse_args, 0, 1, NULL,
         { "/ping [target]", "Send ping IQ request.",
-        { "/ping [rarget]",
+        { "/ping [target]",
           "--------------",
-          "Sends an IQ ping stanza to the specificed target.",
+          "Sends an IQ ping stanza to the specified target.",
           "If no target is supplied, your chat server will be pinged.",
           NULL } } },
 
5 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470