Fix all wrong instances of "it's".
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index e0add86..50fe4a1 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -92,7 +92,7 @@
return name
def isdata(object):
- """Check if an object is of a type that probably means it's data."""
+ """Check if an object is of a type that probably means its data."""
return not (inspect.ismodule(object) or inspect.isclass(object) or
inspect.isroutine(object) or inspect.isframe(object) or
inspect.istraceback(object) or inspect.iscode(object))