Merge pull request #76 from darkstar/fixes

Fix some typos
This commit is contained in:
2017-05-31 22:22:48 +01:00
committed by GitHub
2 changed files with 6 additions and 6 deletions

View File

@@ -39,7 +39,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
partial class AppleDOS : Filesystem
{
/// <summary>
/// Mounts an Apple Lisa filesystem
/// Mounts an Apple DOS filesystem
/// </summary>
public override Errno Mount()
{
@@ -47,7 +47,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
}
/// <summary>
/// Mounts an Apple Lisa filesystem
/// Mounts an Apple DOS filesystem
/// </summary>
public override Errno Mount(bool debug)
{
@@ -119,7 +119,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
}
/// <summary>
/// Umounts this Lisa filesystem
/// Umounts this DOS filesystem
/// </summary>
public override Errno Unmount()
{

View File

@@ -102,7 +102,7 @@ namespace DiscImageChef.Filesystems
NoCopyOnWrite = 0x10000000,
/// <summary>File will not be backed up</summary>
NoDump = 0x20000000,
/// <summary>File contents should not be scrubed</summary>
/// <summary>File contents should not be scrubbed</summary>
NoScrub = 0x40000000,
/// <summary>File contents should not be indexed</summary>
NotIndexed = 0x80000000,
@@ -130,7 +130,7 @@ namespace DiscImageChef.Filesystems
Sync = 0x40000000000,
/// <summary>File belongs to the operating system</summary>
System = 0x80000000000,
/// <summary>If file end is a partial block its contend will be merged with other files</summary>
/// <summary>If file end is a partial block its content will be merged with other files</summary>
TailMerged = 0x100000000000,
/// <summary>File is temporary</summary>
Temporary = 0x200000000000,
@@ -309,4 +309,4 @@ namespace DiscImageChef.Filesystems
/// <summary>Not supported</summary>
ENOTSUP = NotSupported
}
}
}