Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed May 8, 2022
1 parent f349fff commit ab25fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decoder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1227,8 +1227,8 @@ impl<R: Read + Seek> Decoder<R> {
// 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;
Expand Down

0 comments on commit ab25fb6

Please sign in to comment.