diff --git a/lib/modules/manager/bundler/extract.ts b/lib/modules/manager/bundler/extract.ts
index b204056b5db61fb4e63d0e4e75e2506d5fb9f999..403f698452d3f2b53bea4610feac6fb0cef7f927 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 74f1ce2c0cf468f082df0a0a5182a282430130a3..ce19ca981fc5edb17d0dbb661a212d61345acb51 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 537f80fc6123edd775391ccca2482c2ebac3348c..999b2730ac2a6c9405e4bd202ecc3eb40197d8d1 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 961983c5a319169c8a6271826e77d6934b2f4d4e..f5b34a8bc9043a6f003d989a35ff51dff0fb2c28 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<string | null> {
     const cacheFileName = this.getCacheFileName();
     try {
-      // suppress debug logs with errros
+      // suppress debug logs with errors
       if (!(await cachePathExists(cacheFileName))) {
         return null;
       }