about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFrank Steffahn <fdsteffahn@gmail.com>2021-08-22 16:47:02 +0200
committerGitHub <noreply@github.com>2021-08-22 11:47:02 -0300
commit97f6dfef2e07467078f2f2d967a08a90307e7766 (patch)
tree7687d934b9d832ecea934b9fbfd5ea4b96f71a70 /src
parent281a814146ee4b5c9b1cdbeacc2cce1936283382 (diff)
downloadrust-97f6dfef2e07467078f2f2d967a08a90307e7766.tar.gz
rust-97f6dfef2e07467078f2f2d967a08a90307e7766.zip
Fix typo “a Rc” → “an Rc” (#1191)
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/query.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/query.md b/src/doc/rustc-dev-guide/src/query.md
index 24b0454b9ab..7195687919d 100644
--- a/src/doc/rustc-dev-guide/src/query.md
+++ b/src/doc/rustc-dev-guide/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