Skip to content

Commit d2b668b

Browse files
committed
Correct comment
1 parent ff193da commit d2b668b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release/webhook-handler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function createJwtToken() {
2222
const claims = {
2323
// Issue 60 seconds in the past to account for clock drift.
2424
iat: Math.floor(Date.now() / 1000) - 60,
25-
// The token is valid for 1 minutes
25+
// The token is valid for 1 minute(s).
2626
exp: Math.floor(Date.now() / 1000) + (1 * 60),
2727
iss: process.env["GITHUB_APP_ID"]
2828
};

0 commit comments

Comments
 (0)