Skip to content

Commit

Permalink
Fix namespace to match nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmikkers authored Aug 4, 2022
1 parent 83aa942 commit cb058b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
Expand Down

0 comments on commit cb058b0

Please sign in to comment.