chore: fix typos (#116345)

Signed-off-by: cui fliter <imcusg@gmail.com>
This commit is contained in:
cui fliter 2024-03-06 00:05:52 +08:00 committed by GitHub
parent 4402b3cbcf
commit e7ba6e9dbe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 17 additions and 17 deletions

View file

@ -422,7 +422,7 @@ def get_work_dir(parent_dir: StrPath, worker: bool = False) -> StrPath:
# the tests. The name of the dir includes the pid to allow parallel
# testing (see the -j option).
# Emscripten and WASI have stubbed getpid(), Emscripten has only
# milisecond clock resolution. Use randint() instead.
# millisecond clock resolution. Use randint() instead.
if support.is_emscripten or support.is_wasi:
nounce = random.randint(0, 1_000_000)
else: