diff --git a/docs/Documentation.md b/docs/Documentation.md index f66327e..4570e8c 100644 --- a/docs/Documentation.md +++ b/docs/Documentation.md @@ -6,7 +6,7 @@ The following example shows how to upload a local file "localfile.bin" to a tftp using System.Net; using System.Net.Sockets; - using GitHub.JPMikkers.TFTP.Client; + using Baksteen.Net.TFTP.Client; ... TFTPClient.Upload( new IPEndPoint(IPAddress.Parse("192.168.1.10"), 69), @@ -19,7 +19,7 @@ The following example shows how to download a remote file "remotefile.bin" from using System.Net; using System.Net.Sockets; - using GitHub.JPMikkers.TFTP.Client; + using Baksteen.Net.TFTP.Client; ... TFTPClient.Download( new IPEndPoint(IPAddress.Parse("192.168.1.10"), 69),