From 34662657625d017cc83150c1cb3c18447f1cb7f1 Mon Sep 17 00:00:00 2001 From: Frank Steffahn Date: Sun, 22 Aug 2021 12:31:06 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20=E2=80=9Ca=20Rc=E2=80=9D=20?= =?UTF-8?q?=E2=86=92=20=E2=80=9Can=20Rc=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/query.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query.md b/src/query.md index 24b0454b9..719568791 100644 --- a/src/query.md +++ b/src/query.md @@ -60,7 +60,7 @@ method. The answer is that, for each query, the compiler maintains a cache – if your query has already been executed, then, the answer is simple: we clone the return value out of the cache and return it (therefore, you should try to ensure that the return types of queries -are cheaply cloneable; insert a `Rc` if necessary). +are cheaply cloneable; insert an `Rc` if necessary). #### Providers