Skip to content

Commit 82d4057

Browse files
committed
doc: typo
1 parent 64744be commit 82d4057

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/portlet.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -384,11 +384,11 @@ where
384384

385385
/// Acquire the inner `ArcWriteSignal`.
386386
///
387-
/// This calls the inner's [`SsrWriteSignal::inner_write_only`] to
388-
/// return the raw write signal as per that method. This is the
389-
/// same signal used for the `clear` method, except rather than
390-
/// setting to `None` directly a more careful cleanup approach may
391-
/// be applied.
387+
/// This calls the inner [`SsrSignalResource::inner_write_only()`]
388+
/// to acquire a clone of the raw write signal as per that method.
389+
/// This is the same signal used for the `clear` method, except
390+
/// rather than setting to `None` directly, a more controlled
391+
/// cleanup approach may be applied.
392392
///
393393
/// Note that this is typically expected to be used in conjunction
394394
/// with [`on_cleanup`](leptos::reactive::owner::on_cleanup) under
@@ -399,10 +399,10 @@ where
399399

400400
/// Acquire the inner `ArcResource`.
401401
///
402-
/// This calls the inner's [`SsrWriteSignal::read_only`] to acquire
403-
/// a clone of the resource as per that method. This is provided to
404-
/// facilitate more complex rendering requirements, such as the need
405-
/// to `await` for other resources beyond this one.
402+
/// This calls the inner [`SsrSignalResource::read_only()`] to
403+
/// acquire a clone of the resource as per that method. This is
404+
/// provided to facilitate more complex rendering requirements, such
405+
/// as the need to `await` for other resources beyond this one.
406406
pub fn inner_resource(&self) -> ArcResource<Option<T>> {
407407
self.inner.read_only()
408408
}

0 commit comments

Comments
 (0)