@@ -27,7 +27,7 @@ public int Compare(CFItem x, CFItem y)
27
27
}
28
28
29
29
/// <summary>
30
- /// Configuration parameters for the compund files.
30
+ /// Configuration parameters for the compound files.
31
31
/// They can be OR-combined to configure
32
32
/// <see cref="T:OpenMcdf.CompoundFile">Compound file</see> behaviour.
33
33
/// All flags are NOT set by Default.
@@ -112,7 +112,7 @@ public enum CFSUpdateMode
112
112
/// Standard Microsoft© Compound File implementation.
113
113
/// It is also known as OLE/COM structured storage
114
114
/// and contains a hierarchy of storage and stream objects providing
115
- /// efficent storage of multiple kinds of documents in a single file.
115
+ /// efficient storage of multiple kinds of documents in a single file.
116
116
/// Version 3 and 4 of specifications are supported.
117
117
/// </summary>
118
118
public class CompoundFile : IDisposable
@@ -1146,7 +1146,7 @@ private void AllocateDIFATSectorChain(List<Sector> FATsectorChain)
1146
1146
nCurrentSectors ++ ;
1147
1147
1148
1148
//... so, adding a FAT sector may induce DIFAT sectors to increase by one
1149
- // and consequently this may induce ANOTHER FAT sector (TO-THINK: May this condition occure ?)
1149
+ // and consequently this may induce ANOTHER FAT sector (TO-THINK: May this condition occur ?)
1150
1150
if ( nDIFATSectors * DIFAT_SECTOR_FAT_ENTRIES_COUNT <
1151
1151
( header . FATSectorsNumber > HEADER_DIFAT_ENTRIES_COUNT ?
1152
1152
header . FATSectorsNumber - HEADER_DIFAT_ENTRIES_COUNT :
@@ -1569,7 +1569,7 @@ internal List<Sector> GetSectorChain(int secID, SectorType chainType)
1569
1569
return GetMiniSectorChain ( secID ) ;
1570
1570
1571
1571
default :
1572
- throw new CFException ( "Unsupproted chain type" ) ;
1572
+ throw new CFException ( "Unsupported chain type" ) ;
1573
1573
}
1574
1574
}
1575
1575
@@ -2668,7 +2668,7 @@ void IDisposable.Dispose()
2668
2668
2669
2669
/// <summary>
2670
2670
/// When called from user code, release all resources, otherwise, in the case runtime called it,
2671
- /// only unmanagd resources are released.
2671
+ /// only unmanaged resources are released.
2672
2672
/// </summary>
2673
2673
/// <param name="disposing">If true, method has been called from User code, if false it's been called from .net runtime</param>
2674
2674
protected virtual void Dispose ( bool disposing )
@@ -2760,7 +2760,7 @@ private IList<IDirectoryEntry> FindDirectoryEntries(String entryName)
2760
2760
/// <summary>
2761
2761
/// Get a list of all entries with a given name contained in the document.
2762
2762
/// </summary>
2763
- /// <param name="entryName">Name of entries to retrive </param>
2763
+ /// <param name="entryName">Name of entries to retrieve </param>
2764
2764
/// <returns>A list of name-matching entries</returns>
2765
2765
/// <remarks>This function is aimed to speed up entity lookup in
2766
2766
/// flat-structure files (only one or little more known entries)
0 commit comments