Fix more “a”/“an” typos

This commit is contained in:
Frank Steffahn 2021-08-22 16:20:58 +02:00
parent bf88b113ea
commit be9d2699ca
15 changed files with 17 additions and 17 deletions

View file

@ -1148,7 +1148,7 @@ pub type StringRef = OwningRef<String, str>;
/// Typedef of an owning reference that uses a `Rc` as the owner.
pub type RcRef<T, U = T> = OwningRef<Rc<T>, U>;
/// Typedef of an owning reference that uses a `Arc` as the owner.
/// Typedef of an owning reference that uses an `Arc` as the owner.
pub type ArcRef<T, U = T> = OwningRef<Arc<T>, U>;
/// Typedef of an owning reference that uses a `Ref` as the owner.