diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-02-22 18:09:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-22 18:09:54 +0100 |
| commit | 47bf8a6c28c019eabbe1021464de21394ea96251 (patch) | |
| tree | 7cbba1d6bcfd83f75081e1e5e6bca9f587527190 | |
| parent | 5a87e1305758cb46f55958f529c9974e763749c5 (diff) | |
| parent | 00234f0f688563f3db5bd73881bebbfab474b124 (diff) | |
| download | rust-47bf8a6c28c019eabbe1021464de21394ea96251.tar.gz rust-47bf8a6c28c019eabbe1021464de21394ea96251.zip | |
Rollup merge of #121401 - eltociear:patch-25, r=nnethercote
Fix typo in serialized.rs accomodate -> accommodate
| -rw-r--r-- | compiler/rustc_query_system/src/dep_graph/serialized.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/dep_graph/serialized.rs b/compiler/rustc_query_system/src/dep_graph/serialized.rs index f6f6aa07cb3..3272a0ed167 100644 --- a/compiler/rustc_query_system/src/dep_graph/serialized.rs +++ b/compiler/rustc_query_system/src/dep_graph/serialized.rs @@ -145,7 +145,7 @@ impl SerializedDepGraph { /// A packed representation of an edge's start index and byte width. /// -/// This is packed by stealing 2 bits from the start index, which means we only accomodate edge +/// This is packed by stealing 2 bits from the start index, which means we only accommodate edge /// data arrays up to a quarter of our address space. Which seems fine. #[derive(Debug, Clone, Copy)] struct EdgeHeader { |
