From ab25fb673c1504437f9086a78997769a184a00ca Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Sat, 23 Apr 2022 11:53:52 -0700 Subject: [PATCH] typos --- src/decoder/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/decoder/mod.rs b/src/decoder/mod.rs index 7e3c35ea..b8d5d7c0 100644 --- a/src/decoder/mod.rs +++ b/src/decoder/mod.rs @@ -1227,8 +1227,8 @@ impl Decoder { // This iteration is needed to work around an annoying lifetime issue for tiled images: // each tile of an image will map to potentially thousands of non-contiguous ranges in // the output buffer. So instead of getting mutable references to a single tile, we - // take a mutable refence to a entire rows of tiles (which do fit within a single - // contiguous range) and on each iteration only access the x-th tile in that row. + // take a mutable refence to a entire row of tiles (which do fit within a single + // contiguous range) and on each iteration only access the x-th tile in the row. for x in 0..chunks_across { rayon::in_place_scope_fifo(|s| -> TiffResult<()> { let buffer_offset = x * chunk_dimensions.0 * samples;