Bläddra i källkod

Typo fix++

git-svn-id: http://svn.dmdirc.com/trunk@1315 00569f92-eb28-0410-84fd-f71c24880f
tags/0.4
Chris Smith 17 år sedan
förälder
incheckning
49c80932d3
41 ändrade filer med 41 tillägg och 41 borttagningar
  1. 1
    1
      src/com/dmdirc/addons/dcop/DcopCommand.java
  2. 1
    1
      src/com/dmdirc/addons/dcop/NowPlayingCommand.java
  3. 1
    1
      src/com/dmdirc/addons/logging/LoggingCommand.java
  4. 1
    1
      src/com/dmdirc/commandparser/ChannelCommand.java
  5. 1
    1
      src/com/dmdirc/commandparser/GlobalCommand.java
  6. 1
    1
      src/com/dmdirc/commandparser/QueryCommand.java
  7. 1
    1
      src/com/dmdirc/commandparser/ServerCommand.java
  8. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Ban.java
  9. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Benchmark.java
  10. 1
    1
      src/com/dmdirc/commandparser/commands/channel/ChannelSettings.java
  11. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Cycle.java
  12. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Kick.java
  13. 1
    1
      src/com/dmdirc/commandparser/commands/channel/KickEmpty.java
  14. 1
    1
      src/com/dmdirc/commandparser/commands/channel/KickReason.java
  15. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Me.java
  16. 1
    1
      src/com/dmdirc/commandparser/commands/channel/MeEmpty.java
  17. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Mode.java
  18. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Notify.java
  19. 1
    1
      src/com/dmdirc/commandparser/commands/channel/Part.java
  20. 1
    1
      src/com/dmdirc/commandparser/commands/channel/PartDefault.java
  21. 1
    1
      src/com/dmdirc/commandparser/commands/channel/SetNickColour.java
  22. 1
    1
      src/com/dmdirc/commandparser/commands/channel/SetTopic.java
  23. 1
    1
      src/com/dmdirc/commandparser/commands/channel/ShowTopic.java
  24. 1
    1
      src/com/dmdirc/commandparser/commands/server/AllChannels.java
  25. 1
    1
      src/com/dmdirc/commandparser/commands/server/Away.java
  26. 1
    1
      src/com/dmdirc/commandparser/commands/server/Back.java
  27. 1
    1
      src/com/dmdirc/commandparser/commands/server/Clear.java
  28. 1
    1
      src/com/dmdirc/commandparser/commands/server/ConfigInfo.java
  29. 1
    1
      src/com/dmdirc/commandparser/commands/server/Ctcp.java
  30. 1
    1
      src/com/dmdirc/commandparser/commands/server/Disconnect.java
  31. 1
    1
      src/com/dmdirc/commandparser/commands/server/Echo.java
  32. 1
    1
      src/com/dmdirc/commandparser/commands/server/Help.java
  33. 1
    1
      src/com/dmdirc/commandparser/commands/server/Ignore.java
  34. 1
    1
      src/com/dmdirc/commandparser/commands/server/Join.java
  35. 1
    1
      src/com/dmdirc/commandparser/commands/server/Message.java
  36. 1
    1
      src/com/dmdirc/commandparser/commands/server/Motd.java
  37. 1
    1
      src/com/dmdirc/commandparser/commands/server/Nick.java
  38. 1
    1
      src/com/dmdirc/commandparser/commands/server/Notice.java
  39. 1
    1
      src/com/dmdirc/commandparser/commands/server/Raw.java
  40. 1
    1
      src/com/dmdirc/commandparser/commands/server/Reconnect.java
  41. 1
    1
      src/com/dmdirc/commandparser/commands/server/Whois.java

+ 1
- 1
src/com/dmdirc/addons/dcop/DcopCommand.java Visa fil

@@ -51,7 +51,7 @@ public final class DcopCommand extends ServerCommand {
51 51
      * Executes this command.
52 52
      * @param origin The frame in which this command was issued
53 53
      * @param server The server object that this command is associated with
54
-     * @param isSilent Whetehr this command is silenced or not
54
+     * @param isSilent Whether this command is silenced or not
55 55
      * @param args The user supplied arguments
56 56
      */
57 57
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/addons/dcop/NowPlayingCommand.java Visa fil

@@ -54,7 +54,7 @@ public final class NowPlayingCommand extends ChannelCommand {
54 54
      * @param origin The frame in which this command was issued
55 55
      * @param server The server object that this command is associated with
56 56
      * @param channel The channel object this command is associated with
57
-     * @param isSilent Whetehr this command is silenced or not
57
+     * @param isSilent Whether this command is silenced or not
58 58
      * @param args The user supplied arguments
59 59
      */    
60 60
     public void execute(final CommandWindow origin, final Server server, 

+ 1
- 1
src/com/dmdirc/addons/logging/LoggingCommand.java Visa fil

@@ -53,7 +53,7 @@ public final class LoggingCommand extends ServerCommand {
53 53
 	 *
54 54
 	 * @param origin The frame in which this command was issued
55 55
 	 * @param server The server object that this command is associated with
56
-         * @param isSilent Whetehr this command is silenced or not
56
+         * @param isSilent Whether this command is silenced or not
57 57
 	 * @param args The user supplied arguments
58 58
 	 */
59 59
 	public void execute(final CommandWindow origin, final Server server, final boolean isSilent, final String... args) {

+ 1
- 1
src/com/dmdirc/commandparser/ChannelCommand.java Visa fil

@@ -36,7 +36,7 @@ public abstract class ChannelCommand extends Command {
36 36
      * @param origin The window in which the command was typed
37 37
      * @param server The server instance that this command is being executed on
38 38
      * @param channel The channel instance that this command is being executed on
39
-     * @param isSilent Whetehr this command is silenced or not
39
+     * @param isSilent Whether this command is silenced or not
40 40
      * @param args Arguments passed to this command
41 41
      */
42 42
     public abstract void execute(CommandWindow origin, Server server, Channel channel,

+ 1
- 1
src/com/dmdirc/commandparser/GlobalCommand.java Visa fil

@@ -33,7 +33,7 @@ public abstract class GlobalCommand extends Command {
33 33
      * Executes this command. Note that for global commands, origin may be
34 34
      * null.
35 35
      * @param origin The window in which the command was typed
36
-     * @param isSilent Whetehr this command is silenced or not
36
+     * @param isSilent Whether this command is silenced or not
37 37
      * @param args Arguments passed to this command
38 38
      */
39 39
     public abstract void execute(CommandWindow origin, boolean isSilent, String ... args);

+ 1
- 1
src/com/dmdirc/commandparser/QueryCommand.java Visa fil

@@ -36,7 +36,7 @@ public abstract class QueryCommand extends Command {
36 36
      * @param origin The window in which the command was typed
37 37
      * @param server The server instance that this command is being executed on
38 38
      * @param query The query object that the commadparser is associated with
39
-     * @param isSilent Whetehr this command is silenced or not
39
+     * @param isSilent Whether this command is silenced or not
40 40
      * @param args Arguments passed to this command
41 41
      */
42 42
     public abstract void execute(CommandWindow origin, Server server, Query query,

+ 1
- 1
src/com/dmdirc/commandparser/ServerCommand.java Visa fil

@@ -35,7 +35,7 @@ public abstract class ServerCommand extends Command {
35 35
      * Executes this command.
36 36
      * @param origin The window in which the command was typed
37 37
      * @param server The server instance that this command is being executed on
38
-     * @param isSilent Whetehr this command is silenced or not
38
+     * @param isSilent Whether this command is silenced or not
39 39
      * @param args Arguments passed to this command
40 40
      */
41 41
     public abstract void execute(CommandWindow origin, Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Ban.java Visa fil

@@ -48,7 +48,7 @@ public final class Ban extends ChannelCommand {
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50 50
      * @param channel The channel object that this command is associated with
51
-     * @param isSilent Whetehr this command is silenced or not
51
+     * @param isSilent Whether this command is silenced or not
52 52
      * @param args The user supplied arguments
53 53
      */
54 54
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Benchmark.java Visa fil

@@ -47,7 +47,7 @@ public final class Benchmark extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/ChannelSettings.java Visa fil

@@ -47,7 +47,7 @@ public final class ChannelSettings extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Cycle.java Visa fil

@@ -46,7 +46,7 @@ public final class Cycle extends ChannelCommand {
46 46
      * @param origin The frame in which this command was issued
47 47
      * @param server The server object that this command is associated with
48 48
      * @param channel The channel object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Kick.java Visa fil

@@ -47,7 +47,7 @@ public final class Kick extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/KickEmpty.java Visa fil

@@ -47,7 +47,7 @@ public final class KickEmpty extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/KickReason.java Visa fil

@@ -48,7 +48,7 @@ public final class KickReason extends ChannelCommand {
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50 50
      * @param channel The channel object that this command is associated with
51
-     * @param isSilent Whetehr this command is silenced or not
51
+     * @param isSilent Whether this command is silenced or not
52 52
      * @param args The user supplied arguments
53 53
      */
54 54
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Me.java Visa fil

@@ -46,7 +46,7 @@ public final class Me extends ChannelCommand {
46 46
      * @param origin The frame in which this command was issued
47 47
      * @param server The server object that this command is associated with
48 48
      * @param channel The channel object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/MeEmpty.java Visa fil

@@ -48,7 +48,7 @@ public final class MeEmpty extends ChannelCommand {
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50 50
      * @param channel The channel object that this command is associated with
51
-     * @param isSilent Whetehr this command is silenced or not
51
+     * @param isSilent Whether this command is silenced or not
52 52
      * @param args The user supplied arguments
53 53
      */
54 54
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Mode.java Visa fil

@@ -47,7 +47,7 @@ public final class Mode extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Notify.java Visa fil

@@ -51,7 +51,7 @@ public final class Notify extends ChannelCommand {
51 51
      * @param origin The frame in which this command was issued
52 52
      * @param server The server object that this command is associated with
53 53
      * @param channel The channel object that this command is associated with
54
-     * @param isSilent Whetehr this command is silenced or not
54
+     * @param isSilent Whether this command is silenced or not
55 55
      * @param args The user supplied arguments
56 56
      */
57 57
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/Part.java Visa fil

@@ -46,7 +46,7 @@ public final class Part extends ChannelCommand {
46 46
      * @param origin The frame in which this command was issued
47 47
      * @param server The server object that this command is associated with
48 48
      * @param channel The channel object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/PartDefault.java Visa fil

@@ -48,7 +48,7 @@ public final class PartDefault extends ChannelCommand {
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50 50
      * @param channel The channel object that this command is associated with
51
-     * @param isSilent Whetehr this command is silenced or not
51
+     * @param isSilent Whether this command is silenced or not
52 52
      * @param args The user supplied arguments
53 53
      */
54 54
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/SetNickColour.java Visa fil

@@ -54,7 +54,7 @@ public final class SetNickColour extends ChannelCommand {
54 54
      * @param origin The frame in which this command was issued
55 55
      * @param server The server object that this command is associated with
56 56
      * @param channel The channel object that this command is associated with
57
-     * @param isSilent Whetehr this command is silenced or not
57
+     * @param isSilent Whether this command is silenced or not
58 58
      * @param args The user supplied arguments
59 59
      */
60 60
     @SuppressWarnings("unchecked")

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/SetTopic.java Visa fil

@@ -47,7 +47,7 @@ public final class SetTopic extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/ShowTopic.java Visa fil

@@ -47,7 +47,7 @@ public final class ShowTopic extends ChannelCommand {
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49 49
      * @param channel The channel object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/AllChannels.java Visa fil

@@ -45,7 +45,7 @@ public class AllChannels extends ServerCommand {
45 45
      * Executes this command.
46 46
      * @param origin The frame in which this command was issued
47 47
      * @param server The server object that this command is associated with
48
-     * @param isSilent Whetehr this command is silenced or not
48
+     * @param isSilent Whether this command is silenced or not
49 49
      * @param args The user supplied arguments
50 50
      */
51 51
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Away.java Visa fil

@@ -46,7 +46,7 @@ public final class Away extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Back.java Visa fil

@@ -46,7 +46,7 @@ public final class Back extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Clear.java Visa fil

@@ -46,7 +46,7 @@ public class Clear extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public final void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/ConfigInfo.java Visa fil

@@ -47,7 +47,7 @@ public class ConfigInfo extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public final void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Ctcp.java Visa fil

@@ -47,7 +47,7 @@ public final class Ctcp extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Disconnect.java Visa fil

@@ -46,7 +46,7 @@ public final class Disconnect extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Echo.java Visa fil

@@ -49,7 +49,7 @@ public final class Echo extends ServerCommand {
49 49
      * Executes this command.
50 50
      * @param origin The frame in which this command was issued
51 51
      * @param server The server object that this command is associated with
52
-     * @param isSilent Whetehr this command is silenced or not
52
+     * @param isSilent Whether this command is silenced or not
53 53
      * @param args The user supplied arguments
54 54
      */
55 55
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Help.java Visa fil

@@ -54,7 +54,7 @@ public final class Help extends ServerCommand {
54 54
      * Executes this command.
55 55
      * @param origin The frame in which this command was issued
56 56
      * @param server The server object that this command is associated with
57
-     * @param isSilent Whetehr this command is silenced or not
57
+     * @param isSilent Whether this command is silenced or not
58 58
      * @param args The user supplied arguments
59 59
      */
60 60
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Ignore.java Visa fil

@@ -49,7 +49,7 @@ public final class Ignore extends ServerCommand {
49 49
      * Executes this command.
50 50
      * @param origin The frame in which this command was issued
51 51
      * @param server The server object that this command is associated with
52
-     * @param isSilent Whetehr this command is silenced or not
52
+     * @param isSilent Whether this command is silenced or not
53 53
      * @param args The user supplied arguments
54 54
      */
55 55
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Join.java Visa fil

@@ -47,7 +47,7 @@ public final class Join extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Message.java Visa fil

@@ -47,7 +47,7 @@ public final class Message extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Motd.java Visa fil

@@ -46,7 +46,7 @@ public final class Motd extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Nick.java Visa fil

@@ -46,7 +46,7 @@ public final class Nick extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Notice.java Visa fil

@@ -47,7 +47,7 @@ public final class Notice extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Raw.java Visa fil

@@ -47,7 +47,7 @@ public final class Raw extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Reconnect.java Visa fil

@@ -46,7 +46,7 @@ public final class Reconnect extends ServerCommand {
46 46
      * Executes this command.
47 47
      * @param origin The frame in which this command was issued
48 48
      * @param server The server object that this command is associated with
49
-     * @param isSilent Whetehr this command is silenced or not
49
+     * @param isSilent Whether this command is silenced or not
50 50
      * @param args The user supplied arguments
51 51
      */
52 52
     public void execute(final CommandWindow origin, final Server server,

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Whois.java Visa fil

@@ -47,7 +47,7 @@ public final class Whois extends ServerCommand {
47 47
      * Executes this command.
48 48
      * @param origin The frame in which this command was issued
49 49
      * @param server The server object that this command is associated with
50
-     * @param isSilent Whetehr this command is silenced or not
50
+     * @param isSilent Whether this command is silenced or not
51 51
      * @param args The user supplied arguments
52 52
      */
53 53
     public void execute(final CommandWindow origin, final Server server,

Laddar…
Avbryt
Spara