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