From 5a01a7f2ed9452603e9e1b8ab5e3ed79f54168e4 Mon Sep 17 00:00:00 2001 From: mahdi739 <86552031+mahdi739@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:17:25 +0330 Subject: [PATCH] chore: fix typo (#3320) --- 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