Skip to content

Commit cb91293

Browse files
authored
build/setup.cfg/docs: fix typos
PR #412
1 parent a92fbf9 commit cb91293

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies. The ``--skip-dependency-check`` flag should be used in this
3838
case.
3939

4040
We have a dependency on tomli_, but toml_ can be used instead, which may make
41-
bootstraping easier.
41+
bootstrapping easier.
4242

4343

4444
Compatibility

docs/mission.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Mission Statement
55
In the Python ecosystem, the build system tools and the package management
66
are very intertwined. While it might be useful for user to be able to access
77
all this capabilities in a single project (such as pip_), there are several
8-
usecases where this is not desirable. The main being custom environments
8+
use cases where this is not desirable. The main being custom environments
99
(outside PyPI_) or situations where the user does its own package management,
1010
such as Linux distributions.
1111

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ packages = find:
2828
install_requires =
2929
packaging>=19.0
3030
pep517>=0.9.1
31-
tomli>=1.0.0 # toml can be used instead -- in case it makes bootstraping easier
32-
colorama;os_name == "nt" # not actually a runtime dependency, only supplied as there is not "recomended dependency" support
31+
tomli>=1.0.0 # toml can be used instead -- in case it makes bootstrapping easier
32+
colorama;os_name == "nt" # not actually a runtime dependency, only supplied as there is not "recommended dependency" support
3333
importlib-metadata>=0.22;python_version < "3.8"
3434
python_requires = >=3.6
3535
package_dir =

src/build/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ def _handle_backend(self, hook: str) -> Iterator[None]:
459459
sys.exc_info(),
460460
)
461461
except subprocess.CalledProcessError as exception:
462-
raise BuildBackendException(exception, f'Backend subproccess exited when trying to invoke {hook}')
462+
raise BuildBackendException(exception, f'Backend subprocess exited when trying to invoke {hook}')
463463
except Exception as exception:
464464
raise BuildBackendException(exception, exc_info=sys.exc_info())
465465

0 commit comments

Comments
 (0)