From: Tim Gates Date: Mon, 21 Dec 2020 21:16:04 +0000 (+1100) Subject: docs: fix simple typo, seprator -> separator X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=f6d89777480d8d1349db20effc0b549de8c00410;p=stevenblack-hosts.git docs: fix simple typo, seprator -> separator There is a small typo in testUpdateHostsFile.py. Should read `separator` rather than `seprator`. --- diff --git a/testUpdateHostsFile.py b/testUpdateHostsFile.py index e0199503c..00669f09e 100644 --- a/testUpdateHostsFile.py +++ b/testUpdateHostsFile.py @@ -1512,7 +1512,7 @@ class DomainToIDNA(Base): self.assertEqual(actual, expected) - # Test with multiple space as seprator of domain and space and + # Test with multiple space as separator of domain and space and # tabulation as separator or comments. for i in range(len(self.domains)): data = (b"0.0.0.0 " + self.domains[i] + b" \t # Hello World").decode( @@ -1524,7 +1524,7 @@ class DomainToIDNA(Base): self.assertEqual(actual, expected) - # Test with multiple tabulations as seprator of domain and space and + # Test with multiple tabulations as separator of domain and space and # tabulation as separator or comments. for i in range(len(self.domains)): data = (b"0.0.0.0\t\t\t" + self.domains[i] + b" \t # Hello World").decode(