From 2019833fbb7a8e7ccff3c9a3ead77b90b9f2c5a6 Mon Sep 17 00:00:00 2001 From: Alex Lyon Date: Wed, 1 May 2019 04:58:20 -0700 Subject: [PATCH] uucore: remove an inaccurate comment --- src/uucore/zero_copy/platform/default.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/uucore/zero_copy/platform/default.rs b/src/uucore/zero_copy/platform/default.rs index b0babc3d9..9d158522c 100644 --- a/src/uucore/zero_copy/platform/default.rs +++ b/src/uucore/zero_copy/platform/default.rs @@ -2,10 +2,6 @@ use crate::zero_copy::RawObject; use std::io::{self, Write}; -/// A "zero-copy" writer used on platforms for which we have no actual zero-copy implementation (or -/// which use standard read/write operations for zero-copy I/O). This writer just delegates to the -/// inner writer used to create it. Using this struct avoids going through the machinery used to -/// handle the case where a given writer does not support zero-copy on a platform. pub struct PlatformZeroCopyWriter; impl PlatformZeroCopyWriter {