From d01168f5857fcf38e01e8ea6c676026849f8188a Mon Sep 17 00:00:00 2001 From: Mahdi Date: Tue, 3 Dec 2024 16:24:30 +0330 Subject: [PATCH] chore: fix typo --- reactive_graph/src/computed/memo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactive_graph/src/computed/memo.rs b/reactive_graph/src/computed/memo.rs index b684f29cab..d50fd86226 100644 --- a/reactive_graph/src/computed/memo.rs +++ b/reactive_graph/src/computed/memo.rs @@ -207,7 +207,7 @@ where /// Creates a new memo by passing a function that computes the value. /// - /// Unlike [`ArcMemo::new`](), this receives ownership of the previous value. As a result, it + /// Unlike [`Memo::new`](), this receives ownership of the previous value. As a result, it /// must return both the new value and a `bool` that is `true` if the value has changed. /// /// This is lazy: the function will not be called until the memo's value is read for the first