We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599cd68 commit 2c90a37Copy full SHA for 2c90a37
src/liballoc/collections/mod.rs
@@ -89,9 +89,7 @@ impl Display for TryReserveError {
89
TryReserveError::CapacityOverflow => {
90
" because the computed capacity exceeded the collection's maximum"
91
}
92
- TryReserveError::AllocError { .. } => {
93
- " because the memory allocator returned a error"
94
- }
+ TryReserveError::AllocError { .. } => " because the memory allocator returned a error",
95
};
96
fmt.write_str(reason)
97
0 commit comments