fix typos

This commit is contained in:
Robin Dunn
2019-10-31 12:28:48 -07:00
parent e181817d96
commit db9781dcdf
2 changed files with 3 additions and 3 deletions

View File

@@ -885,7 +885,7 @@ def bash2dosPath(path):
def do_regenerate_sysconfig(): def do_regenerate_sysconfig():
""" """
If a Python environment has been relocated to a new folder then it's If a Python environment has been relocated to a new folder then it's
possible that the sysconfig can still be usign paths for the original possible that the sysconfig can still be using paths for the original
location. Since wxPython's build uses WAF, which uses the sysconfig (via location. Since wxPython's build uses WAF, which uses the sysconfig (via
python-config, distutils.sysconfig, etc.) then we need to ensure that these python-config, distutils.sysconfig, etc.) then we need to ensure that these
paths match the current environment. paths match the current environment.
@@ -901,7 +901,7 @@ def do_regenerate_sysconfig():
runcmd(cmd) runcmd(cmd)
# On success the new data module will have been written to a subfolder # On success the new data module will have been written to a subfolder
# of the current folder, which is recorded in ./pybuilddir.tx # of the current folder, which is recorded in ./pybuilddir.txt
with open('pybuilddir.txt', 'r') as fp: with open('pybuilddir.txt', 'r') as fp:
pybd = fp.read() pybd = fp.read()

View File

@@ -598,7 +598,7 @@ cdef class SVGgradient:
@property @property
def stops(self): def stops(self):
""" """
A generator that iterates over the :classL`SVGgradientStop` objects contained in the SVGgradient A generator that iterates over the :class:`SVGgradientStop` objects contained in the SVGgradient
""" """
self._check_ptr() self._check_ptr()
for i in range(self._ptr.nstops): for i in range(self._ptr.nstops):