Fix markup in the LOB docs

Use asterisks instead of dashes to avoid markdownlint MD004 errors.
This commit is contained in:
Vadim Zeitlin
2024-03-19 19:24:44 +01:00
parent 41303bf4b7
commit ea28545507

View File

@@ -27,9 +27,9 @@ The `offset` parameter is always counted from the beginning of the BLOB's data.
### Notes
- As with empty files (but contrary to e.g. `std::vector`) reading from the **beginning** of an empty blob is a valid operation (effectively a no-op),
* As with empty files (but contrary to e.g. `std::vector`) reading from the **beginning** of an empty blob is a valid operation (effectively a no-op),
e.g. it won't throw or error otherwise.
- It is possible to default-construct `blob` objects. Default-constructed `blob`s are in an invalid state and must not be accessed other than to query
* It is possible to default-construct `blob` objects. Default-constructed `blob`s are in an invalid state and must not be accessed other than to query
their validity (`is_valid()`) or to initialize them (`initialize(session &session)`) in order to bring them into a valid state.
#### Portability