diff --git a/src/SharpCompress/Factories/IFactory.cs b/src/SharpCompress/Factories/IFactory.cs
index 778ea4a6..82e27f11 100644
--- a/src/SharpCompress/Factories/IFactory.cs
+++ b/src/SharpCompress/Factories/IFactory.cs
@@ -23,16 +23,16 @@ namespace SharpCompress.Factories
///
string Name { get; }
+ ///
+ /// Gets the archive Type in case it is a well known archive format.
+ ///
+ Common.ArchiveType? KnownArchiveType { get; }
+
///
/// returns the extensions typically used by this archive type.
///
///
- IEnumerable GetSupportedExtensions();
-
- ///
- /// returns the archive type in case it is a well known archive.
- ///
- Common.ArchiveType? KnownArchiveType { get; }
+ IEnumerable GetSupportedExtensions();
///
/// Returns true if the stream represents an archive of the format defined by this type.