Skip to content

Commit

Permalink
kv docs tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
barraguda committed Dec 22, 2024
1 parent eaba295 commit f89db6d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/src/kv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ pub enum KvAction {
/// # Parameters
/// * `key` - The key as a byte vector
/// * `tx_id` - Optional transaction ID if this operation is part of a transaction
///
/// Blob: Value in Vec<u8>
/// * blob: Vec<u8> - Value to store for the key
Set { key: Vec<u8>, tx_id: Option<u64> },
/// Deletes a key-value pair from the database.
///
Expand Down Expand Up @@ -58,8 +57,7 @@ pub enum KvResponse {
///
/// # Fields
/// * `key` - The retrieved key as a byte vector
///
/// Blob: Value in Vec<u8>
/// * blob: Vec<u8> - Value associated with the key
Get(Vec<u8>),
/// Indicates an error occurred during the operation.
Err(KvError),
Expand Down

0 comments on commit f89db6d

Please sign in to comment.