Fix typo “a Rc” → “an Rc” (#1191)

This commit is contained in:
Frank Steffahn 2021-08-22 16:47:02 +02:00 committed by GitHub
parent 77a9813ae0
commit cf0e151b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 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 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 (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 #### Providers