Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 19, 2023
1 parent 4123523 commit 4213170
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/apache/commons/net/tftp/TFTPServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import org.apache.commons.net.io.ToNetASCIIInputStream;

/**
* A fully multi-threaded tftp server. Can handle multiple clients at the same time. Implements RFC 1350 and wrapping block numbers for large file support.
* A fully multi-threaded TFTP server. Can handle multiple clients at the same time. Implements RFC 1350 and wrapping block numbers for large file support.
*
* To launch, just create an instance of the class. An IOException will be thrown if the server fails to start for reasons such as port in use, port denied,
* etc.
Expand Down Expand Up @@ -250,7 +250,7 @@ private void handleRead(final TFTPReadRequestPacket trrp) throws IOException, TF
}

/*
* handle a tftp write request.
* handle a TFTP write request.
*/
private void handleWrite(final TFTPWriteRequestPacket twrp) throws IOException, TFTPPacketException {
OutputStream bos = null;
Expand Down

0 comments on commit 4213170

Please sign in to comment.