Skip to content

Commit

Permalink
metadata*
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-frmr committed Oct 15, 2024
1 parent db9753a commit 41f97d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/types/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl Request {
self.body = Some(body.try_into()?);
Ok(self)
}
/// Set the metdata field for this request. Metadata is simply a [`String`].
/// Set the metadata field for this request. Metadata is simply a [`String`].
/// Metadata should usually be used for middleware and other message-passing
/// situations that require the original IPC body and blob to be preserved.
/// As such, metadata should not always be expected to reach the final destination
Expand Down
2 changes: 1 addition & 1 deletion src/types/response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Response {
self.body = Some(body.try_into()?);
Ok(self)
}
/// Set the metdata field for this response. Metadata is simply a [`String`].
/// Set the metadata field for this response. Metadata is simply a [`String`].
/// Metadata should usually be used for middleware and other message-passing
/// situations that require the original IPC body and blob to be preserved.
/// As such, metadata should not always be expected to reach the final destination
Expand Down

0 comments on commit 41f97d7

Please sign in to comment.