File tree 9 files changed +11
-11
lines changed
9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ for pr in "$@"; do
57
57
fi
58
58
59
59
git node land --autorebase --yes $MULTIPLE_COMMIT_POLICY " $pr " > output 2>&1 || echo " Failed to land #${pr} "
60
- # cat here otherwise we'll be supressing the output of git node land
60
+ # cat here otherwise we'll be suppressing the output of git node land
61
61
cat output
62
62
63
63
# TODO(mmarchini): workaround for ncu not returning the expected status code,
Original file line number Diff line number Diff line change 3
3
ROOT=$( cd " $( dirname " $0 " ) /../.." && pwd)
4
4
export ROOT
5
5
6
- # This function compare new version with current version of a depdendency and
6
+ # This function compare new version with current version of a dependency and
7
7
# exit the script if the versions are the same
8
8
#
9
9
# $1 is the package name e.g. 'acorn', 'ada', 'base64' etc. See the file
@@ -55,7 +55,7 @@ finalize_version_update() {
55
55
# https://github.com/nodejs/node/blob/main/doc/contributing/maintaining/maintaining-dependencies.md
56
56
# for a complete list of package name
57
57
# $2 is the downloaded archive
58
- # $3 (optional) is the deposited sha256 cheksum . When provided, it is checked
58
+ # $3 (optional) is the deposited sha256 checksum . When provided, it is checked
59
59
# against the checksum generated from the archive
60
60
log_and_verify_sha256sum () {
61
61
package_name=" $1 "
Original file line number Diff line number Diff line change 11
11
// symbols from the DLL and redirects them back to the DLL.
12
12
// This allows node.exe to export the same symbols as libnode.dll
13
13
// when building Node.js as a shared library. This is conceptually
14
- // similary to the create_expfile.sh script used on AIX.
14
+ // similar to the create_expfile.sh script used on AIX.
15
15
//
16
16
// Generating this .def file requires parsing data out of the
17
17
// PE32/PE32+ file format. Helper structs are defined in <Windows.h>
Original file line number Diff line number Diff line change 37
37
in GYP down requires a level of indirection. Any calls will have to be removed
38
38
and cleaned up once the GYP-to-GN transition is complete.
39
39
As a result, we only use this script when the list of files is large and
40
- frequently-changing. In these cases, having one canonical list outweights the
40
+ frequently-changing. In these cases, having one canonical list outweighs the
41
41
downsides.
42
42
As of this writing, the GN build is basically complete. It's likely that all
43
43
large and frequently changing targets where this is appropriate use this
@@ -253,7 +253,7 @@ def LoadPythonDictionary(path):
253
253
254
254
def ReplaceSubstrings (values , search_for , replace_with ):
255
255
"""Recursively replaces substrings in a value.
256
- Replaces all substrings of the "search_for" with "repace_with " for all
256
+ Replaces all substrings of the "search_for" with "replace_with " for all
257
257
strings occurring in "values". This is done by recursively iterating into
258
258
lists as well as the keys and values of dictionaries."""
259
259
if isinstance (values , str ):
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if "%~3"=="prerelease" set VSWHERE_WITH_PRERELEASE=1
9
9
set " InstallerPath = %ProgramFiles(x86)% \Microsoft Visual Studio\Installer"
10
10
if not exist " %InstallerPath% " set " InstallerPath = %ProgramFiles% \Microsoft Visual Studio\Installer"
11
11
if not exist " %InstallerPath% " goto :no-vswhere
12
- :: Manipulate %Path% for easier " handeling
12
+ :: Manipulate %Path% for easier " handling
13
13
set " Path = %Path% ;%InstallerPath% "
14
14
where vswhere 2 > nul > nul
15
15
if errorlevel 1 goto :no-vswhere
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def pipe(sfd, dfd):
47
47
if __name__ == '__main__' :
48
48
argv = sys .argv [1 :]
49
49
50
- # Make select() interruptable by SIGCHLD.
50
+ # Make select() interruptible by SIGCHLD.
51
51
signal .signal (signal .SIGCHLD , lambda nr , _ : None )
52
52
53
53
parent_fd , child_fd = pty .openpty ()
Original file line number Diff line number Diff line change 219
219
# Enable third party HEAP library
220
220
'v8_enable_third_party_heap%' : 0 ,
221
221
222
- # Libaries used by third party heap
222
+ # Libraries used by third party heap
223
223
'v8_third_party_heap_libs%' : [],
224
224
225
225
# Source code used by third party heap
Original file line number Diff line number Diff line change 105
105
# Flat merge `third_party/inspector_protocol:inspector_string_conversions`
106
106
'<(inspector_path)/v8-string-conversions.cc' ,
107
107
'<(inspector_path)/v8-string-conversions.h' ,
108
- # Flat merge `third_party/inspector_protocal :crdtp_platform`
108
+ # Flat merge `third_party/inspector_protocol :crdtp_platform`
109
109
'<(inspector_protocol_path)/crdtp/json_platform.h' ,
110
110
'<(inspector_protocol_path)/crdtp/json_platform_v8.cc' ,
111
111
# Flat merge `third_party/inspector_protocol:crdtp`
Original file line number Diff line number Diff line change 1897
1897
['enable_lto=="true"' , {
1898
1898
'cflags_cc' : [ '-fno-lto' ],
1899
1899
}],
1900
- # Chnges in push_registers_asm.cc in V8 v12.8 requires using
1900
+ # Changes in push_registers_asm.cc in V8 v12.8 requires using
1901
1901
# push_registers_masm on Windows even with ClangCL on x64
1902
1902
['OS=="win"' , {
1903
1903
'conditions' : [
You can’t perform that action at this time.
0 commit comments