Skip to content

Commit

Permalink
Fix typo in Signal/ArcSignal
Browse files Browse the repository at this point in the history
  • Loading branch information
FreezyLemon committed Dec 9, 2024
1 parent 775bea4 commit 726a994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reactive_graph/src/wrappers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub mod read {
/// or derived signal closure.
///
/// This allows you to create APIs that take any kind of `ArcSignal<T>` as an argument,
/// rather than adding a generic `F: Fn() -> T`. Values can be access with the same
/// rather than adding a generic `F: Fn() -> T`. Values can be accessed with the same
/// function call, `with()`, and `get()` APIs as other signals.
pub struct ArcSignal<T: 'static, S = SyncStorage>
where
Expand Down Expand Up @@ -333,7 +333,7 @@ pub mod read {
/// an [`ReadSignal`], [`Memo`], [`RwSignal`], or derived signal closure.
///
/// This allows you to create APIs that take any kind of `Signal<T>` as an argument,
/// rather than adding a generic `F: Fn() -> T`. Values can be access with the same
/// rather than adding a generic `F: Fn() -> T`. Values can be accessed with the same
/// function call, `with()`, and `get()` APIs as other signals.
pub struct Signal<T, S = SyncStorage>
where
Expand Down

0 comments on commit 726a994

Please sign in to comment.