diff --git a/lib/modules/manager/bundler/extract.ts b/lib/modules/manager/bundler/extract.ts index b204056b5db61f..403f698452d3f2 100644 --- a/lib/modules/manager/bundler/extract.ts +++ b/lib/modules/manager/bundler/extract.ts @@ -9,7 +9,7 @@ import { delimiters, extractRubyVersion, getLockFilePath } from './common'; import { extractLockFileEntries } from './locked-version'; function formatContent(input: string): string { - return input.replace(regEx(/^ {2}/), '') + '\n'; //remove leading witespace and add a new line at the end + return input.replace(regEx(/^ {2}/), '') + '\n'; //remove leading whitespace and add a new line at the end } export async function extractPackageFile( diff --git a/lib/modules/manager/npm/extract/common/overrides.ts b/lib/modules/manager/npm/extract/common/overrides.ts index 74f1ce2c0cf468..ce19ca981fc5ed 100644 --- a/lib/modules/manager/npm/extract/common/overrides.ts +++ b/lib/modules/manager/npm/extract/common/overrides.ts @@ -20,7 +20,7 @@ export function extractOverrideDepsRec( } for (const [overrideName, versionValue] of Object.entries(child)) { if (is.string(versionValue)) { - // special handling for "." override depenency name + // special handling for "." override dependency name // "." means the constraint is applied to the parent dep const currDepName = overrideName === '.' ? parents[parents.length - 1] : overrideName; diff --git a/lib/modules/versioning/unity3d/readme.md b/lib/modules/versioning/unity3d/readme.md index 537f80fc6123ed..999b2730ac2a6c 100644 --- a/lib/modules/versioning/unity3d/readme.md +++ b/lib/modules/versioning/unity3d/readme.md @@ -4,7 +4,7 @@ Unity versioning follow semantic versioning, followed by a letter, number and an - Minor and patch version are incremental, starting at 0 - The letter denotes a stream (**a**lpha, **b**eta, **f**inal release, etc.) - The number is a growing index -- The hash is calculated by Unity internally and irrelevant for comparision +- The hash is calculated by Unity internally and irrelevant for comparison Examples: diff --git a/lib/util/cache/repository/impl/local.ts b/lib/util/cache/repository/impl/local.ts index 961983c5a31916..f5b34a8bc9043a 100644 --- a/lib/util/cache/repository/impl/local.ts +++ b/lib/util/cache/repository/impl/local.ts @@ -12,7 +12,7 @@ export class RepoCacheLocal extends RepoCacheBase { protected async read(): Promise { const cacheFileName = this.getCacheFileName(); try { - // suppress debug logs with errros + // suppress debug logs with errors if (!(await cachePathExists(cacheFileName))) { return null; }