@@ -175,7 +175,7 @@ def _map_to_wheel(
175175 relpath = os .path .relpath (dirsrc , src )
176176 if relpath in exclude_dirs :
177177 dirnames .remove (name )
178- # sort to process directories determninistically
178+ # sort to process directories deterministically
179179 dirnames .sort ()
180180 for name in sorted (filenames ):
181181 filesrc = os .path .join (root , name )
@@ -223,7 +223,7 @@ def _use_ansi_escapes() -> bool:
223223 return False
224224
225225
226- def _log (string : str , ** kwargs : Any ) -> None :
226+ def _log (string : str , ** kwargs : Any ) -> None :
227227 if not _use_ansi_escapes ():
228228 string = style .strip (string )
229229 print (string , ** kwargs )
@@ -462,7 +462,7 @@ def _install_path(self, wheel_file: mesonpy._wheelfile.WheelFile, origin: Path,
462462 'setting the DLL load path or preloading. See the documentation for '
463463 'the "tool.meson-python.allow-windows-internal-shared-libs" option.' )
464464
465- # When an executable, libray , or Python extension module is
465+ # When an executable, library , or Python extension module is
466466 # dynamically linked to a library built as part of the project,
467467 # Meson adds a library load path to it pointing to the build
468468 # directory, in the form of a relative RPATH entry. meson-python
@@ -1209,7 +1209,7 @@ def _get_meson_command(
12091209 # The meson Python package is a dependency of the meson-python Python
12101210 # package, however, it may occur that the meson Python package is installed
12111211 # but the corresponding meson command is not available in $PATH. Implement
1212- # a runtime check to verify that the build environment is setup correcly .
1212+ # a runtime check to verify that the build environment is setup correctly .
12131213 try :
12141214 r = subprocess .run (cmd + ['--version' ], text = True , capture_output = True )
12151215 except FileNotFoundError as err :
0 commit comments