From 780d6c081d79ef6fb6cb114e31a42923836997d0 Mon Sep 17 00:00:00 2001 From: ht0 code <111149207+ht0code@users.noreply.github.com> Date: Wed, 24 Aug 2022 16:20:53 +0100 Subject: [PATCH] Fixed spelling error in network.py Fixed misspelling of "field" in comment --- network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network.py b/network.py index c8b105b..7c090f9 100644 --- a/network.py +++ b/network.py @@ -7,7 +7,7 @@ def __init__(self): self.client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.host = "localhost" # For this to work on your machine this must be equal to the ipv4 address of the machine running the server # You can find this address by typing ipconfig in CMD and copying the ipv4 address. Again this must be the servers - # ipv4 address. This feild will be the same for all your clients. + # ipv4 address. This field will be the same for all your clients. self.port = 5555 self.addr = (self.host, self.port) self.id = self.connect()