summaryrefslogtreecommitdiff
path: root/tools/gyp
diff options
context:
space:
mode:
authorMasashi Hirano <cherrydog07@gmail.com>2018-05-14 23:16:58 +0900
committerAnatoli Papirovski <apapirovski@mac.com>2018-05-16 09:08:37 +0400
commit3b1bf0d394811a1850bf5553d9879c82c73e9466 (patch)
tree6ccfa4df3b236c4950f908df8ac5c8a077e023db /tools/gyp
parent34471c79ff3a700295d71a01ae8434882e58519c (diff)
downloadandroid-node-v8-3b1bf0d394811a1850bf5553d9879c82c73e9466.tar.gz
android-node-v8-3b1bf0d394811a1850bf5553d9879c82c73e9466.tar.bz2
android-node-v8-3b1bf0d394811a1850bf5553d9879c82c73e9466.zip
tools: fix "the the" typos in comments
PR-URL: https://github.com/nodejs/node/pull/20716 Fixes: https://github.com/nodejs/node/issues/20682 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools/gyp')
-rw-r--r--tools/gyp/pylib/gyp/MSVSSettings.py2
-rw-r--r--tools/gyp/pylib/gyp/generator/make.py2
-rw-r--r--tools/gyp/pylib/gyp/generator/ninja.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/gyp/pylib/gyp/MSVSSettings.py b/tools/gyp/pylib/gyp/MSVSSettings.py
index 8ae19180ea..99c53a8570 100644
--- a/tools/gyp/pylib/gyp/MSVSSettings.py
+++ b/tools/gyp/pylib/gyp/MSVSSettings.py
@@ -417,7 +417,7 @@ def FixVCMacroSlashes(s):
def ConvertVCMacrosToMSBuild(s):
- """Convert the the MSVS macros found in the string to the MSBuild equivalent.
+ """Convert the MSVS macros found in the string to the MSBuild equivalent.
This list is probably not exhaustive. Add as needed.
"""
diff --git a/tools/gyp/pylib/gyp/generator/make.py b/tools/gyp/pylib/gyp/generator/make.py
index f7f519b3e6..5870ed67be 100644
--- a/tools/gyp/pylib/gyp/generator/make.py
+++ b/tools/gyp/pylib/gyp/generator/make.py
@@ -19,7 +19,7 @@
#
# Global settings and utility functions are currently stuffed in the
# toplevel Makefile. It may make sense to generate some .mk files on
-# the side to keep the the files readable.
+# the side to keep the files readable.
import os
import re
diff --git a/tools/gyp/pylib/gyp/generator/ninja.py b/tools/gyp/pylib/gyp/generator/ninja.py
index 163281b3e3..6140df9513 100644
--- a/tools/gyp/pylib/gyp/generator/ninja.py
+++ b/tools/gyp/pylib/gyp/generator/ninja.py
@@ -140,7 +140,7 @@ class Target(object):
# On Windows, incremental linking requires linking against all the .objs
# that compose a .lib (rather than the .lib itself). That list is stored
# here. In this case, we also need to save the compile_deps for the target,
- # so that the the target that directly depends on the .objs can also depend
+ # so that the target that directly depends on the .objs can also depend
# on those.
self.component_objs = None
self.compile_deps = None