[docs] Slightly simplify notes about entries order of container functions

This commit is contained in:
Timofey Solomko
2018-03-17 15:37:41 +03:00
parent 2e3867afde
commit 309a07ed15
3 changed files with 20 additions and 20 deletions
+8 -8
View File
@@ -14,9 +14,9 @@ public class SevenZipContainer: Container {
/**
Processes 7-Zip container and returns an array of `SevenZipEntry` with information and data for all entries.
- Important: The order of entries is defined by 7-Zip container and, particularly,
by the creator of a given 7-Zip container. It is likely that directories will be encountered earlier
than files stored in those directories, but one SHOULD NOT rely on any particular order.
- Important: The order of entries is defined by 7-Zip container and, particularly, by the creator of a given 7-Zip
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
particular order is guaranteed.
- Parameter container: 7-Zip container's data.
@@ -165,12 +165,12 @@ public class SevenZipContainer: Container {
}
/**
Processes 7-Zip container and returns an array of `SevenZipEntryInfo`
with information about entries in this container.
Processes 7-Zip container and returns an array of `SevenZipEntryInfo` with information about entries in this
container.
- Important: The order of entries is defined by 7-Zip container and, particularly,
by the creator of a given 7-Zip container. It is likely that directories will be encountered earlier
than files stored in those directories, but one SHOULD NOT rely on any particular order.
- Important: The order of entries is defined by 7-Zip container and, particularly, by the creator of a given 7-Zip
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
particular order is guaranteed.
- Parameter container: 7-Zip container's data.
+6 -6
View File
@@ -12,9 +12,9 @@ public class TarContainer: Container {
/**
Processes TAR container and returns an array of `TarEntry` with information and data for all entries.
- Important: The order of entries is defined by TAR container and, particularly,
by the creator of a given TAR container. It is likely that directories will be encountered earlier
than files stored in those directories, but one SHOULD NOT rely on any particular order.
- Important: The order of entries is defined by TAR container and, particularly, by the creator of a given TAR
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
particular order is guaranteed.
- Parameter container: TAR container's data.
@@ -43,9 +43,9 @@ public class TarContainer: Container {
/**
Processes TAR container and returns an array of `TarEntryInfo` with information about entries in this container.
- Important: The order of entries is defined by TAR container and, particularly,
by the creator of a given TAR container. It is likely that directories will be encountered earlier
than files stored in those directories, but one SHOULD NOT rely on any particular order.
- Important: The order of entries is defined by TAR container and, particularly, by the creator of a given TAR
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
particular order is guaranteed.
- Parameter container: TAR container's data.
+6 -6
View File
@@ -12,9 +12,9 @@ public class ZipContainer: Container {
/**
Processes ZIP container and returns an array of `ZipEntry` with information and data for all entries.
- Important: The order of entries is defined by ZIP container and, particularly,
by the creator of a given ZIP container. It is likely that directories will be encountered earlier
than files stored in those directories, but one SHOULD NOT rely on any particular order.
- Important: The order of entries is defined by ZIP container and, particularly, by the creator of a given ZIP
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
particular order is guaranteed.
- Parameter container: ZIP container's data.
@@ -115,9 +115,9 @@ public class ZipContainer: Container {
/**
Processes ZIP container and returns an array of `ZipEntryInfo` with information about entries in this container.
- Important: The order of entries is defined by ZIP container and, particularly,
by the creator of a given ZIP container. It is likely that directories will be encountered earlier
than files stored in those directories, but one SHOULD NOT rely on any particular order.
- Important: The order of entries is defined by ZIP container and, particularly, by the creator of a given ZIP
container. It is likely that directories will be encountered earlier than files stored in those directories, but no
particular order is guaranteed.
- Parameter container: ZIP container's data.