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

View File

@@ -102,7 +102,7 @@ namespace DiscImageChef.Filesystems
NoCopyOnWrite = 0x10000000, NoCopyOnWrite = 0x10000000,
/// <summary>File will not be backed up</summary> /// <summary>File will not be backed up</summary>
NoDump = 0x20000000, NoDump = 0x20000000,
/// <summary>File contents should not be scrubed</summary> /// <summary>File contents should not be scrubbed</summary>
NoScrub = 0x40000000, NoScrub = 0x40000000,
/// <summary>File contents should not be indexed</summary> /// <summary>File contents should not be indexed</summary>
NotIndexed = 0x80000000, NotIndexed = 0x80000000,
@@ -130,7 +130,7 @@ namespace DiscImageChef.Filesystems
Sync = 0x40000000000, Sync = 0x40000000000,
/// <summary>File belongs to the operating system</summary> /// <summary>File belongs to the operating system</summary>
System = 0x80000000000, 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, TailMerged = 0x100000000000,
/// <summary>File is temporary</summary> /// <summary>File is temporary</summary>
Temporary = 0x200000000000, Temporary = 0x200000000000,