Fix arrays in tests

This commit is contained in:
Mathijs van de Nes 2015-01-04 10:55:32 +01:00
parent f45a558dac
commit e7c018310b
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ use bzip2::reader::BzDecompressor;
/// {
/// // For demonstration purposes we read from an empty buffer.
/// // Normally a File object would be used.
/// let buf = [0u8, ..128];
/// let buf = [0u8; 128];
/// let mut reader = std::io::BufReader::new(&buf);
///
/// let zip = try!(zip::ZipReader::new(reader));

View file

@ -28,7 +28,7 @@ enum GenericZipWriter<W>
/// fn doit() -> zip::result::ZipResult<()>
/// {
/// // For this example we write to a buffer, but normally you should use a File
/// let mut buf = [0u8, ..65536];
/// let mut buf = [0u8; 65536];
/// let w = std::io::BufWriter::new(&mut buf);
/// let mut zip = zip::ZipWriter::new(w);
///