Skip to content

Commit 533f494

Browse files
committed
fix docs
1 parent 1c60020 commit 533f494

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

star_frame/src/unsize/impls/set.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ use std::collections::BTreeSet;
1818
/// Searches are performed using binary search.
1919
///
2020
/// ## Unsized Type System
21-
/// See [`SetRef`] and [`SetMut`]. These will be used often in the `UnsizedType` system.
2221
/// For exclusive methods that change the underlying data size, see [`SetExclusiveImpl`].
2322
#[unsized_type(skip_idl, owned_type = BTreeSet<T>, owned_from_ptr = unsized_set_owned_from_ptr::<T, L>, skip_init_struct)]
2423
pub struct Set<T, L = u32>

star_frame/src/unsize/impls/unsized_string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::{
1111
///
1212
/// Under the hood, this is a [`List`] of bytes, prefixed with `L` representing the length of the string, defaulting to `u32`.
1313
///
14-
/// See [`Self::as_str`](UnsizedStringMut::as_str) and [`Self::as_mut_str`](UnsizedStringMut::as_mut_str) to access the underlying string slice,
14+
/// See [`Self::as_str`] and [`Self::as_mut_str`] to access the underlying string slice,
1515
/// and [`UnsizedStringExclusiveImpl::set`] to set the string to a given value.
1616
1717
#[unsized_type(skip_idl, owned_type = String, owned_from_ptr = unsized_string_owned_from_ptr)]

star_frame/src/unsize/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub use test_helpers::*;
1616

1717
use crate::{ensure, ErrorCode, Result};
1818

19-
/// A helper trait that connects an [`UnsizedType::Mut`] to its parent [`UnsizedType`].
19+
/// A helper trait that connects an [`UnsizedType::Ptr`] to its parent [`UnsizedType`].
2020
///
2121
/// # Safety
2222
/// The `UnsizedType` should almost always be the same as the `UnsizedTypePtr`'s parent.

0 commit comments

Comments
 (0)