Skip to content

Commit

Permalink
Also fix “a OwningRef
Browse files Browse the repository at this point in the history
  • Loading branch information
steffahn committed Aug 24, 2021
1 parent b823dc1 commit 6248dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_data_structures/src/owning_ref/mod.rs
Expand Up @@ -5,7 +5,7 @@
This crate provides the _owning reference_ types `OwningRef` and `OwningRefMut`
that enables it to bundle a reference together with the owner of the data it points to.
This allows moving and dropping of a `OwningRef` without needing to recreate the reference.
This allows moving and dropping of an `OwningRef` without needing to recreate the reference.
This can sometimes be useful because Rust borrowing rules normally prevent
moving a type that has been moved from. For example, this kind of code gets rejected:
Expand Down

0 comments on commit 6248dbc

Please sign in to comment.