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
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-12-22 20:03:46 +0300
committerRich Trott <rtrott@gmail.com>2020-12-25 15:28:35 +0300
commite068eec7834bd8e6b455d23949cec0c713860562 (patch)
tree1780eca1dd10ca2f053fef6e20011f8841298221 /tools/genv8constants.py
parent18fc50f983bbaa64b5c297dc31dae30ec98b5332 (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/genv8constants.py')
-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')