Skip to content

Commit 0d4194e

Browse files
authored
Fixed missing periods
1 parent 1208278 commit 0d4194e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

DataCompressor/common/doc/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ common is a collection of headers for other libraries
1212
Notes on usage
1313
---
1414

15-
* `IO_SIZE_BITS` specifies the number of bits used for file-I/O-related operations. In particular, the size of return values for Read/Write functions in dependent libraries are based on it
16-
* If `IO_SIZE_BITS` is the same size as size_t, the Read/Write functions in dependent libraries do not work properly if the MSB of a size_t variable specifying the size to be read/written is used. For example, if `IO_SIZE_BITS` is 32 and `sizeof(size_t)` is 4, the maximum size (parameter value) that the Read/Write function can work with is `2^31 - 1`, i.e., the 32nd bit cannot be used. If it is used, the return value of the functions will be interpreted as an error (since it is interpreted as a negative number)
17-
* Error codes have to be negative in order to distinguish them from return values which signal the amount of bytes read/written (which is positive)
15+
* `IO_SIZE_BITS` specifies the number of bits used for file-I/O-related operations. In particular, the size of return values for Read/Write functions in dependent libraries are based on it.
16+
* If `IO_SIZE_BITS` is the same size as size_t, the Read/Write functions in dependent libraries do not work properly if the MSB of a size_t variable specifying the size to be read/written is used. For example, if `IO_SIZE_BITS` is 32 and `sizeof(size_t)` is 4, the maximum size (parameter value) that the Read/Write function can work with is `2^31 - 1`, i.e., the 32nd bit cannot be used. If it is used, the return value of the functions will be interpreted as an error (since it is interpreted as a negative number).
17+
* Error codes have to be negative in order to distinguish them from return values which signal the amount of bytes read/written (which is positive).

0 commit comments

Comments
 (0)