Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Multirious committed Mar 19, 2024
1 parent c83fb3e commit 34a09a6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/span_tween.rs
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,8 @@ impl<'r, 'b> ChildSpanTweenBuilder<'r, 'b> {
}

/// Helper trait
///
/// This trait is sealed and not meant to be implemented outside of the current crate.
pub trait ChildSpanTweenBuilderExt<'b>: sealed::Sealed {
/// Create the builder
#[deprecated(
Expand Down Expand Up @@ -926,6 +928,8 @@ impl<'r, 'b> WorldChildSpanTweenBuilder<'r, 'b> {
}

/// Helper trait
///
/// This trait is sealed and not meant to be implemented outside of the current crate.
pub trait WorldChildSpanTweenBuilderExt<'b>: sealed::Sealed {
/// Create the builder
#[deprecated(
Expand All @@ -935,7 +939,7 @@ pub trait WorldChildSpanTweenBuilderExt<'b>: sealed::Sealed {
fn child_tweens<'r>(&'r mut self) -> WorldChildSpanTweenBuilder<'r, 'b> {
self.span_tweens()
}
/// Create a child builder for span tween.
/// Create a world child builder for span tween.
fn span_tweens<'r>(&'r mut self) -> WorldChildSpanTweenBuilder<'r, 'b>;
}

Expand Down

0 comments on commit 34a09a6

Please sign in to comment.