Skip to content

Commit 7e701ce

Browse files
committed
[object #177] into_mutable() -> into_owned()
1 parent 25d8e7b commit 7e701ce

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

git-object/src/immutable/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Immutable objects are read-only structures referencing most data from [a byte slice][crate::ObjectRef::from_bytes()].
22
//!
33
//! Immutable objects are expected to be deserialized from bytes that acts as backing store, and they
4-
//! cannot be mutated or serialized. Instead, one will [convert][crate::ObjectRef::into_mutable()] them into their [`mutable`][crate::mutable] counterparts
4+
//! cannot be mutated or serialized. Instead, one will [convert][crate::ObjectRef::into_owned()] them into their [`mutable`][crate::mutable] counterparts
55
//! which support mutation and serialization.
66
77
///

git-object/src/immutable/object.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ impl<'a> ObjectRef<'a> {
1414
/// Convert the signature_ref object into a mutable version, consuming the source in the process.
1515
///
1616
/// Note that this is an expensive operation.
17-
pub fn into_mutable(self) -> Object {
17+
pub fn into_owned(self) -> Object {
1818
self.into()
1919
}
2020

2121
/// Convert this signature_ref object into its mutable counterpart.
2222
///
2323
/// Note that this is an expensive operation.
24-
pub fn to_mutable(&self) -> Object {
24+
pub fn to_owned(&self) -> Object {
2525
self.clone().into()
2626
}
2727
}

git-object/src/mutable/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Mutable objects are Commits, Trees, Blobs and Tags that can be changed and serialized.
44
//! They either created using object [construction][crate::Object] or by [deserializing existing objects][crate::ObjectRef::from_bytes()]
5-
//! and converting these [into mutable copies][crate::ObjectRef::into_mutable()] for adjustments.
5+
//! and converting these [into mutable copies][crate::ObjectRef::into_owned()] for adjustments.
66
77
pub(crate) const NL: &[u8; 1] = b"\n";
88
pub(crate) const SPACE: &[u8; 1] = b" ";

git-pack/src/data/object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ impl<'a> Object<'a> {
2626
/// conveniently. The cost of parsing an object is negligible.
2727
///
2828
/// **Note** that [mutable, decoded objects][git_object::Object] can be created from a [`crate::data::Object`]
29-
/// using [`git_object::ObjectRef::into_mutable()`].
29+
/// using [`git_object::ObjectRef::into_owned()`].
3030
pub fn decode(&self) -> Result<ObjectRef<'a>, immutable::object::decode::Error> {
3131
Ok(match self.kind {
3232
git_object::Kind::Tree => ObjectRef::Tree(TreeRef::from_bytes(self.data)?),

0 commit comments

Comments
 (0)