Skip to content

Commit

Permalink
Fix documentation and update method comment
Browse files Browse the repository at this point in the history
  • Loading branch information
umegane committed Jan 17, 2025
1 parent 89b4ae7 commit 4d3a978
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/internal/blob-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ BLOB対応の方針変更により、以下のクラスを廃止しました。

BLOB対応の方針変更により、以下のメソッドを廃止しました。

* `std::vector<large_object_view>& large_objects();`
* `std::vector<large_object_view>& datastore::large_objects();`



Expand Down
3 changes: 2 additions & 1 deletion include/limestone/api/datastore.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ class datastore {
* @brief change the available boundary version that the entries may be read.
* @details This version comprises the oldest accessible snapshot, that is,
* the datastore may delete anything older than the version included in this snapshot.
* @param version the target boundary version
* @details The boundary version must be monotonic, that is,
* it must be greater than or equal to the previous boundary version. * @param version the target boundary version
* @attention this function should be called after the ready() is called.
* @see switch_safe_snapshot()
* @note the specified version must be smaller than or equal to the version that was told by the switch_safe_snapshot().
Expand Down

0 comments on commit 4d3a978

Please sign in to comment.