diff --git a/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs b/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs
index aa290b09a58..1f74056fea5 100644
--- a/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs
+++ b/src/BizHawk.Client.Common/fwmanager/FirmwareManager.cs
@@ -66,7 +66,7 @@ public static (string FilePath, int FileSize, FirmwareFile FF) PerformPatchOnDis
}
///
- /// Sometimes this is called from a loop in FirmwaresConfig.DoScan.
+ /// Sometimes this is called from a loop in FirmwareConfig.DoScan.
/// In that case, we don't want to call repeatedly, so we use to skip it.
///
public ResolutionInfo? Resolve(PathEntryCollection pathEntries, IDictionary userSpecifications, FirmwareRecord record, bool forbidScan = false)
@@ -144,7 +144,7 @@ public void DoScanAndResolve(PathEntryCollection pathEntries, IDictionary todo = [ new(pathEntries.FirmwareAbsolutePath()) ];
while (todo.Count != 0)
{
@@ -207,7 +207,7 @@ public void DoScanAndResolve(PathEntryCollection pathEntries, IDictionary
public TSync SyncSettings { get; set; }
///
/// All roms that should be loaded as part of this core load.
- /// Order may be significant. Does not include firmwares or other general resources.
+ /// Order may be significant. Does not include firmware or other general resources.
///
public List Roms { get; set; } = new List();
///
diff --git a/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs b/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs
index 532bb114b03..b99f42677ef 100644
--- a/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs
+++ b/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs
@@ -179,7 +179,7 @@ public struct SystemInfo
public delegate void FrontendFirmwareNotify(string name);
///
- /// Set a callback to be called whenever the core calls MDFN_MakeFName for a firmware, so that we can load firmwares on demand
+ /// Set a callback to be called whenever the core calls MDFN_MakeFName for a firmware, so that we can load firmware on demand
///
[BizImport(CC)]
public abstract void SetFrontendFirmwareNotify(FrontendFirmwareNotify cb);
diff --git a/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs b/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs
index 5d5e018fe9c..7be4cbcf127 100644
--- a/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs
+++ b/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs
@@ -90,7 +90,7 @@ public static int TotalFrames
}
///
- /// set-up firmwares on , optionally setting , then
+ /// set-up firmware on , optionally setting , then
/// initialise and return a core instance ( is provided),
/// and optionally specify a frame number to seek to (e.g. to skip BIOS screens)
///