Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed Jun 13, 2024
1 parent 9fe7980 commit 6bfd3dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/InputHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ public static function withDecoders(array $decoders, ?DriverInterface $driver =
public function handle($input): ImageInterface|ColorInterface
{
foreach ($this->decoders as $decoder) {
// resolve river specialized decoder
// resolve driver specialized decoder
$decoder = $this->resolve($decoder);

try {
return $decoder->decode($input);
} catch (DecoderException $e) {
// let next decoder try
// try next decoder
}
}

Expand Down

0 comments on commit 6bfd3dd

Please sign in to comment.