diff --git a/DiscImageChef.Filesystems/AppleDOS/Super.cs b/DiscImageChef.Filesystems/AppleDOS/Super.cs
index e52bc323..19e23329 100644
--- a/DiscImageChef.Filesystems/AppleDOS/Super.cs
+++ b/DiscImageChef.Filesystems/AppleDOS/Super.cs
@@ -39,7 +39,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
partial class AppleDOS : Filesystem
{
///
- /// Mounts an Apple Lisa filesystem
+ /// Mounts an Apple DOS filesystem
///
public override Errno Mount()
{
@@ -47,7 +47,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
}
///
- /// Mounts an Apple Lisa filesystem
+ /// Mounts an Apple DOS filesystem
///
public override Errno Mount(bool debug)
{
@@ -119,7 +119,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
}
///
- /// Umounts this Lisa filesystem
+ /// Umounts this DOS filesystem
///
public override Errno Unmount()
{
diff --git a/DiscImageChef.Filesystems/Structs.cs b/DiscImageChef.Filesystems/Structs.cs
index d4dcdf21..2392ad27 100644
--- a/DiscImageChef.Filesystems/Structs.cs
+++ b/DiscImageChef.Filesystems/Structs.cs
@@ -102,7 +102,7 @@ namespace DiscImageChef.Filesystems
NoCopyOnWrite = 0x10000000,
/// File will not be backed up
NoDump = 0x20000000,
- /// File contents should not be scrubed
+ /// File contents should not be scrubbed
NoScrub = 0x40000000,
/// File contents should not be indexed
NotIndexed = 0x80000000,
@@ -130,7 +130,7 @@ namespace DiscImageChef.Filesystems
Sync = 0x40000000000,
/// File belongs to the operating system
System = 0x80000000000,
- /// If file end is a partial block its contend will be merged with other files
+ /// If file end is a partial block its content will be merged with other files
TailMerged = 0x100000000000,
/// File is temporary
Temporary = 0x200000000000,
@@ -309,4 +309,4 @@ namespace DiscImageChef.Filesystems
/// Not supported
ENOTSUP = NotSupported
}
-}
\ No newline at end of file
+}