Fix some typoes in docs and comments.
diff --git a/man/portage.5 b/man/portage.5
index 35dcc2b..547d996 100644
--- a/man/portage.5
+++ b/man/portage.5
@@ -122,7 +122,7 @@
 
 .B Extended Atom Syntax
 .br
-The following atom syntax extensions that are only supported in user
+The following atom syntax extensions are only supported in user
 configuration files and command line arguments for programs such as
 \fBemerge(1)\fR:
 .RS
diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py
index b9020a7..5832fd9 100644
--- a/pym/portage/dep/__init__.py
+++ b/pym/portage/dep/__init__.py
@@ -1063,7 +1063,7 @@
 				(_atom_base, type(s)))
 
 		if not isinstance(s, _atom_base):
-			# Avoid TypeError with from _atom_base.__init__ with PyPy.
+			# Avoid TypeError from _atom_base.__init__ with PyPy.
 			s = _unicode_decode(s)
 
 		_atom_base.__init__(s)