Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-12-22 20:03:46 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2021-01-12 15:09:22 +0300
commit10f1c893c8fc27fc8060076334059a7b4e6a9235 (patch)
tree2797dd9c889480d660e2abc0d03c5afcb6d02143 /tools
parent37b39a2d6b685f48774946ba0ddd76040b7cc008 (diff)
tools: correct usage message for genv8constants.py
PR-URL: https://github.com/nodejs/node/pull/36606 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/genv8constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genv8constants.py b/tools/genv8constants.py
index 64370ad2961..f750ca4de75 100755
--- a/tools/genv8constants.py
+++ b/tools/genv8constants.py
@@ -14,7 +14,7 @@ import sys
import errno
if len(sys.argv) != 3:
- print("usage: objsym.py outfile libv8_base.a")
+ print("Usage: genv8constants.py outfile libv8_base.a")
sys.exit(2)
outfile = open(sys.argv[1], 'w')