From 131adece37aa353f9d6986629fb922fb24ea0882 Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Fri, 30 Sep 2022 11:19:00 +0530 Subject: [PATCH] tools: fix typo in tools/update-authors.mjs The filename ends with an s. Signed-off-by: Darshan Sen PR-URL: https://github.com/nodejs/node/pull/44780 Reviewed-By: Luigi Pinca Reviewed-By: Moshe Atlow Reviewed-By: Daeyeon Jeong Reviewed-By: Daijiro Wachi Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig Reviewed-By: Akhil Marsonya --- tools/update-authors.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update-authors.mjs b/tools/update-authors.mjs index 971fe160e3cf71..7dfae178e33eff 100755 --- a/tools/update-authors.mjs +++ b/tools/update-authors.mjs @@ -1,5 +1,5 @@ #!/usr/bin/env node -// Usage: tools/update-author.mjs [--dry] +// Usage: tools/update-authors.mjs [--dry] // Passing --dry will redirect output to stdout rather than write to 'AUTHORS'. import { spawn } from 'node:child_process'; import fs from 'node:fs';