Skip to content

Commit 41f97d7

Browse files
committed
metadata*
1 parent db9753a commit 41f97d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/types/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl Request {
118118
self.body = Some(body.try_into()?);
119119
Ok(self)
120120
}
121-
/// Set the metdata field for this request. Metadata is simply a [`String`].
121+
/// Set the metadata field for this request. Metadata is simply a [`String`].
122122
/// Metadata should usually be used for middleware and other message-passing
123123
/// situations that require the original IPC body and blob to be preserved.
124124
/// As such, metadata should not always be expected to reach the final destination

src/types/response.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl Response {
6060
self.body = Some(body.try_into()?);
6161
Ok(self)
6262
}
63-
/// Set the metdata field for this response. Metadata is simply a [`String`].
63+
/// Set the metadata field for this response. Metadata is simply a [`String`].
6464
/// Metadata should usually be used for middleware and other message-passing
6565
/// situations that require the original IPC body and blob to be preserved.
6666
/// As such, metadata should not always be expected to reach the final destination

0 commit comments

Comments
 (0)