From d85ea61c7edee30ce442bbee2c0e888da22f49da Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 22 Dec 2020 09:03:46 -0800 Subject: [PATCH] tools: correct usage message for genv8constants.py PR-URL: https://github.com/nodejs/node/pull/36606 Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- tools/genv8constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/genv8constants.py b/tools/genv8constants.py index 64370ad29611c0..f750ca4de7523f 100755 --- a/tools/genv8constants.py +++ b/tools/genv8constants.py @@ -14,7 +14,7 @@ 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')