diff options
| author | Frank Steffahn <frank.steffahn@stu.uni-kiel.de> | 2021-08-22 12:33:27 +0200 |
|---|---|---|
| committer | Frank Steffahn <frank.steffahn@stu.uni-kiel.de> | 2021-08-24 02:23:16 +0200 |
| commit | 04fa1d81dd435fc5eaf22ed72efdfd699e1d6c97 (patch) | |
| tree | 23bb0542808ee66c720b10a13e87aced28c801d7 /compiler/rustc_data_structures/src | |
| parent | a49e38e672c60da788360e088f00ad12353e3913 (diff) | |
| download | rust-04fa1d81dd435fc5eaf22ed72efdfd699e1d6c97.tar.gz rust-04fa1d81dd435fc5eaf22ed72efdfd699e1d6c97.zip | |
Fix typo “a Rc” → “an Rc”
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/owning_ref/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/owning_ref/mod.rs b/compiler/rustc_data_structures/src/owning_ref/mod.rs index 5b27a407ad4..251195204da 100644 --- a/compiler/rustc_data_structures/src/owning_ref/mod.rs +++ b/compiler/rustc_data_structures/src/owning_ref/mod.rs @@ -1146,7 +1146,7 @@ pub type VecRef<T, U = T> = OwningRef<Vec<T>, U>; /// Typedef of an owning reference that uses a `String` as the owner. pub type StringRef = OwningRef<String, str>; -/// Typedef of an owning reference that uses a `Rc` as the owner. +/// Typedef of an owning reference that uses an `Rc` as the owner. pub type RcRef<T, U = T> = OwningRef<Rc<T>, U>; /// Typedef of an owning reference that uses an `Arc` as the owner. pub type ArcRef<T, U = T> = OwningRef<Arc<T>, U>; |
