diff --git a/src/LibHac/FsSrv/DebugConfigurationService.cs b/src/LibHac/FsSrv/DebugConfigurationService.cs
index cd3593aa..dee37b2c 100644
--- a/src/LibHac/FsSrv/DebugConfigurationService.cs
+++ b/src/LibHac/FsSrv/DebugConfigurationService.cs
@@ -11,7 +11,7 @@ namespace LibHac.FsSrv;
///
/// Handles debug configuration calls for .
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
public struct DebugConfigurationService
{
private DebugConfigurationServiceImpl _serviceImpl;
@@ -63,7 +63,7 @@ public struct DebugConfigurationService
///
/// Manages a key-value list of debug settings.
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
public class DebugConfigurationServiceImpl : IDisposable
{
private Configuration _config;
diff --git a/src/LibHac/FsSrv/Storage/GameCardService.cs b/src/LibHac/FsSrv/Storage/GameCardService.cs
index 6a7009ad..f2503958 100644
--- a/src/LibHac/FsSrv/Storage/GameCardService.cs
+++ b/src/LibHac/FsSrv/Storage/GameCardService.cs
@@ -35,7 +35,7 @@ internal struct GameCardServiceGlobals : IDisposable
///
/// Contains functions for interacting with the game card storage device.
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
internal static class GameCardService
{
private static ulong MakeAttributeId(OpenGameCardAttribute attribute) => (ulong)attribute;
diff --git a/src/LibHac/FsSrv/Storage/MmcService.cs b/src/LibHac/FsSrv/Storage/MmcService.cs
index dcb6b291..e205b974 100644
--- a/src/LibHac/FsSrv/Storage/MmcService.cs
+++ b/src/LibHac/FsSrv/Storage/MmcService.cs
@@ -14,7 +14,7 @@ namespace LibHac.FsSrv.Storage;
///
/// Contains global MMC-storage-related functions.
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
public static class MmcServiceGlobalMethods
{
public static Result GetAndClearPatrolReadAllocateBufferCount(this FileSystemServer fsSrv, out long successCount,
@@ -27,7 +27,7 @@ public static class MmcServiceGlobalMethods
///
/// Contains functions for interacting with the MMC storage device.
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
internal static class MmcService
{
private static int MakeOperationId(MmcManagerOperationIdValue operation) => (int)operation;
diff --git a/src/LibHac/FsSrv/Storage/SdCardService.cs b/src/LibHac/FsSrv/Storage/SdCardService.cs
index b0a63431..f18cda6f 100644
--- a/src/LibHac/FsSrv/Storage/SdCardService.cs
+++ b/src/LibHac/FsSrv/Storage/SdCardService.cs
@@ -17,7 +17,7 @@ namespace LibHac.FsSrv.Storage;
///
/// Contains functions for interacting with the SD card storage device.
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
internal static class SdCardService
{
private static int MakeOperationId(SdCardManagerOperationIdValue operation) => (int)operation;
diff --git a/src/LibHac/FsSystem/BucketTree.cs b/src/LibHac/FsSystem/BucketTree.cs
index 9ecd8b65..21b614d5 100644
--- a/src/LibHac/FsSystem/BucketTree.cs
+++ b/src/LibHac/FsSystem/BucketTree.cs
@@ -14,7 +14,7 @@ namespace LibHac.FsSystem;
///
/// Allows searching and iterating the entries in a bucket tree data structure.
///
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
public partial class BucketTree : IDisposable
{
private const uint ExpectedMagic = 0x52544B42; // BKTR
diff --git a/src/LibHac/FsSystem/IndirectStorage.cs b/src/LibHac/FsSystem/IndirectStorage.cs
index d5dcc966..d2f09c57 100644
--- a/src/LibHac/FsSystem/IndirectStorage.cs
+++ b/src/LibHac/FsSystem/IndirectStorage.cs
@@ -13,7 +13,7 @@ namespace LibHac.FsSystem;
///
/// The 's contains
/// values that describe how the created storage is to be built from the base storages.
-/// Based on FS 13.1.0 (nnSdk 13.4.0)
+/// Based on FS 14.1.0 (nnSdk 14.3.0)
public class IndirectStorage : IStorage
{
public static readonly int StorageCount = 2;