Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(lib/util/template): fix typo #29343

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/util/template/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ export const allowedFields = {
newDigestShort:
'A shorted version of newDigest, for use when the full digest is too long to be conveniently displayed',
newMajor:
'The major version of the new version. e.g. "3" if the new version if "3.1.0"',
'The major version of the new version. e.g. "3" if the new version is "3.1.0"',
rarkins marked this conversation as resolved.
Show resolved Hide resolved
newMinor:
'The minor version of the new version. e.g. "1" if the new version if "3.1.0"',
'The minor version of the new version. e.g. "1" if the new version is "3.1.0"',
newPatch:
'The patch version of the new version. e.g. "0" if the new version if "3.1.0"',
'The patch version of the new version. e.g. "0" if the new version is "3.1.0"',
newName:
'The name of the new dependency that replaces the current deprecated dependency',
newValue:
Expand Down