Skip to content

Commit

Permalink
Fix "it's" vs "its"
Browse files Browse the repository at this point in the history
Signed-off-by: J Robert Ray <jrray@jrray.org>
  • Loading branch information
jrray committed Jul 4, 2024
1 parent fed4bcf commit 7db4831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/spfs/src/graph/object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Object {
/// In memory, objects always use the latest flatbuffer
/// format. The given bytes may be discarded or reconstructed
/// if a conversion is necessary, but the header is preserved
/// in order to ensure that the object does not change it's
/// in order to ensure that the object does not change its
/// digest unless explicitly marked to do so.
pub fn new<B: Into<bytes::Bytes>>(buf: B) -> crate::Result<Self> {
let bytes = buf.into();
Expand Down Expand Up @@ -118,7 +118,7 @@ impl Object {
/// In memory, objects always use the latest flatbuffer
/// format. The given bytes may be discarded or reconstructed
/// if a conversion is necessary, but the header is preserved
/// in order to ensure that the object does not change it's
/// in order to ensure that the object does not change its
/// digest unless explicitly marked to do so.
///
/// Unlike [`Object::new`] this constructor doesn't respect the header and
Expand Down

0 comments on commit 7db4831

Please sign in to comment.