Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
CeleritasCelery committed Jan 24, 2025
1 parent 808826a commit 44aedd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/object/vector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct LispVecInner {

/// A lisp vector. Unlike vectors in other languages this is not resizeable. This type is
/// represented as slice of [`ObjCell`] which is immutable by default. However with the
/// [try_mut](LispVecInner::try_mut) method, you can obtain a mutable view into this slice.
/// [try_mut](LispVec::try_mut) method, you can obtain a mutable view into this slice.
#[derive(PartialEq, Eq, Trace)]
pub(crate) struct LispVec(GcHeap<LispVecInner>);

Expand Down

0 comments on commit 44aedd4

Please sign in to comment.