Rollup merge of #77338 - pickfire:patch-7, r=jyn514

Fix typo in alloc vec comment

cc @the8472
This commit is contained in:
Jonas Schievink 2020-09-30 20:56:19 +02:00 committed by GitHub
commit 054ba3db2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2281,7 +2281,7 @@ where
// use try-fold since
// - it vectorizes better for some iterator adapters
// - unlike most internal iteration methods methods it only takes a &mut self
// - unlike most internal iteration methods, it only takes a &mut self
// - it lets us thread the write pointer through its innards and get it back in the end
let sink = InPlaceDrop { inner: dst_buf, dst: dst_buf };
let sink = iterator