Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Zeroconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def write(self, out):
raise AbstractMethodException

def toString(self, other):
"""String representation with addtional information"""
"""String representation with additional information"""
arg = "%s/%s,%s" % (self.ttl, self.getRemainingTTL(currentTimeMillis()), other)
return DNSEntry.toString(self, "record", arg)

Expand Down Expand Up @@ -896,7 +896,7 @@ class Listener(object):
to cache information as it arrives.

It requires registration with an Engine object in order to have
the read() method called when a socket is availble for reading."""
the read() method called when a socket is available for reading."""

def __init__(self, zeroconf):
self.zeroconf = zeroconf
Expand Down Expand Up @@ -1250,7 +1250,7 @@ def __init__(self, bindaddress=None):
# SO_REUSEADDR should be equivalent to SO_REUSEPORT for
# multicast UDP sockets (p 731, "TCP/IP Illustrated,
# Volume 2"), but some BSD-derived systems require
# SO_REUSEPORT to be specified explicity. Also, not all
# SO_REUSEPORT to be specified explicitly. Also, not all
# versions of Python have SO_REUSEPORT available. So
# if you're on a BSD-based system, and haven't upgraded
# to Python 2.3 yet, you may find this library doesn't
Expand Down