From ac2adfeac46d006b7757058a3af1f2dc08019b61 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 6 Dec 2024 18:26:36 +0100 Subject: [PATCH] Fix typos discovered by codespell (#1496) # https://pypi.org/project/codespell % `codespell` ``` ./emsdk.py:1459: thier ==> their ./test/test.bat:1: equivilent ==> equivalent ./test/test.py:198: Specificlly ==> Specifically ./scripts/update_bazel_workspace.py:2: revisons ==> revisions ./scripts/update_node.py:11: direcotry ==> directory ./bazel/emscripten_toolchain/BUILD.bazel:57: implictly ==> implicitly ./docker/Dockerfile:87: terninal ==> terminal ``` --- bazel/emscripten_toolchain/BUILD.bazel | 2 +- docker/Dockerfile | 2 +- emsdk.py | 2 +- scripts/update_bazel_workspace.py | 2 +- scripts/update_node.py | 2 +- test/test.bat | 2 +- test/test.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bazel/emscripten_toolchain/BUILD.bazel b/bazel/emscripten_toolchain/BUILD.bazel index 3cd0860..cdbaa8c 100644 --- a/bazel/emscripten_toolchain/BUILD.bazel +++ b/bazel/emscripten_toolchain/BUILD.bazel @@ -54,7 +54,7 @@ filegroup( filegroup(name = "empty") -# dlmalloc.bc is implictly added by the emscripten toolchain +# dlmalloc.bc is implicitly added by the emscripten toolchain cc_library(name = "malloc") emscripten_cc_toolchain_config_rule( diff --git a/docker/Dockerfile b/docker/Dockerfile index 19027d4..4e4667e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -84,7 +84,7 @@ RUN echo "## Update and install packages" \ && apt-get -qq -y update \ # Somewhere in here apt sets up tzdata which asks for your time zone and blocks # waiting for the answer which you can't give as docker build doesn't read from - # the terninal. The env vars set here avoid the interactive prompt and set the TZ. + # the terminal. The env vars set here avoid the interactive prompt and set the TZ. && DEBIAN_FRONTEND="noninteractive" TZ="America/San_Francisco" apt-get -qq install -y --no-install-recommends \ sudo \ libxml2 \ diff --git a/emsdk.py b/emsdk.py index 20185d2..c6b36b0 100644 --- a/emsdk.py +++ b/emsdk.py @@ -1456,7 +1456,7 @@ def get_required_path(active_tools): # the tools path to the users path if a program by that name is found # in the existing PATH. This allows us to, for example, add our version # node to the users PATH if, and only if, they don't already have a - # another version of node in thier PATH. + # another version of node in their PATH. if hasattr(tool, 'activated_path_skip'): current_path = which(tool.activated_path_skip) # We found an executable by this name in the current PATH, but we diff --git a/scripts/update_bazel_workspace.py b/scripts/update_bazel_workspace.py index 874b49b..d6ea540 100755 --- a/scripts/update_bazel_workspace.py +++ b/scripts/update_bazel_workspace.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# This script will update emsdk/bazel/revisons.bzl to the latest version of +# This script will update emsdk/bazel/revisions.bzl to the latest version of # emscripten. It reads emsdk/emscripten-releases-tags.json to get the latest # version number. Then, it downloads the prebuilts for that version and computes # the sha256sum for the archive. It then puts all this information into the diff --git a/scripts/update_node.py b/scripts/update_node.py index 032503c..774c38a 100755 --- a/scripts/update_node.py +++ b/scripts/update_node.py @@ -8,7 +8,7 @@ http://storage.google.com/webassembly. For the windows version we also alter the directory layout to add the 'bin' -direcotry. +directory. """ import urllib.request diff --git a/test/test.bat b/test/test.bat index 9fea0c1..c39bb3c 100755 --- a/test/test.bat +++ b/test/test.bat @@ -1,4 +1,4 @@ -:: equivilent of test.sh as windows bat file +:: equivalent of test.sh as windows bat file set PATH=%PATH%;%PYTHON_BIN% CALL emsdk install latest CALL emsdk activate latest diff --git a/test/test.py b/test/test.py index fbf4e9f..559c73f 100755 --- a/test/test.py +++ b/test/test.py @@ -195,7 +195,7 @@ int main() { check_call(upstream_emcc + ' hello_world.c') def test_closure(self): - # Specificlly test with `--closure` so we know that node_modules is working + # Specifically test with `--closure` so we know that node_modules is working check_call(upstream_emcc + ' hello_world.c --closure=1') def test_specific_version(self):