From e8cc87e18c69e9fc046c500052f107711015b7d3 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 4 Sep 2021 07:55:40 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - stackexchange/site.py - testsuite.py Fixes: - Should read `objects` rather than `objectss`. - Should read `compatibility` rather than `compatiblity`. --- stackexchange/site.py | 2 +- testsuite.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stackexchange/site.py b/stackexchange/site.py index 48af005..2b20f51 100644 --- a/stackexchange/site.py +++ b/stackexchange/site.py @@ -292,7 +292,7 @@ def all_badges(self, **kw): return self.build('badges', Badge, 'badges', kw) def badges(self, ids = None, **kw): - """Returns the badge objectss with the given IDs.""" + """Returns the badge objects with the given IDs.""" if ids == None: return self._user_prop('badges', Badge, 'users', kw) else: diff --git a/testsuite.py b/testsuite.py index 0d00d8c..7d0e4de 100644 --- a/testsuite.py +++ b/testsuite.py @@ -3,7 +3,7 @@ import datetime, re, stackauth, stackexchange, stackexchange.web, unittest import stackexchange.sites as stacksites from stackexchange.core import StackExchangeError -# for Python 3 compatiblity +# for Python 3 compatibility try: import htmlentitydefs except ImportError: