[Updated] D11944: setup.py: fix some documentation typos
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Sun Dec 19 02:47:37 UTC 2021
Closed by commit rHG23ce9e7bf1e5: setup.py: fix some documentation typos (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D11944?vs=31540&id=31541
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11944/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D11944
AFFECTED FILES
setup.py
CHANGE DETAILS
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -209,7 +209,7 @@
from distutils.sysconfig import get_python_inc, get_config_var
from distutils.version import StrictVersion
-# Explain to distutils.StrictVersion how our release candidates are versionned
+# Explain to distutils.StrictVersion how our release candidates are versioned
StrictVersion.version_re = re.compile(r'^(\d+)\.(\d+)(\.(\d+))?-?(rc(\d+))?$')
@@ -597,8 +597,8 @@
e for e in self.extensions if e.name != 'mercurial.zstd'
]
- # Build Rust standalon extensions if it'll be used
- # and its build is not explictely disabled (for external build
+ # Build Rust standalone extensions if it'll be used
+ # and its build is not explicitly disabled (for external build
# as Linux distributions would do)
if self.distribution.rust and self.rust:
if not sys.platform.startswith('linux'):
@@ -1502,7 +1502,7 @@
raise RustCompilationError("Cargo not found")
elif exc.errno == errno.EACCES:
raise RustCompilationError(
- "Cargo found, but permisssion to execute it is denied"
+ "Cargo found, but permission to execute it is denied"
)
else:
raise
To: mharbison72, #hg-reviewers
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20211219/4bdb5c32/attachment-0002.html>
More information about the Mercurial-patches
mailing list