Index: Wire.java =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Wire.java,v retrieving revision 1.4 diff -u -r1.4 Wire.java --- Wire.java 6 Apr 2003 22:31:53 -0000 1.4 +++ Wire.java 27 Aug 2003 14:05:16 -0000 @@ -186,7 +186,7 @@ public static final void output(final String s) throws IOException { if (s == null) { - throw new IllegalArgumentException("Output may noy be null"); + throw new IllegalArgumentException("Output may not be null"); } output(s.getBytes()); } @@ -194,7 +194,7 @@ public static final void input(final String s) throws IOException { if (s == null) { - throw new IllegalArgumentException("Input may noy be null"); + throw new IllegalArgumentException("Input may not be null"); } input(s.getBytes()); }