Skip to content

Commit

Permalink
fix: unrelated Grumphp issues
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jan 15, 2024
1 parent 027375f commit 71a6145
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019-2023 Pol Dellaiera
Copyright (c) 2019-2024 Pol Dellaiera

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/code/primes.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
$primesGenerator = static function (Iterator $iterator) use (&$primesGenerator): Generator {
yield $primeNumber = $iterator->current();

$iterator = new \CallbackFilterIterator(
$iterator = new CallbackFilterIterator(
$iterator,
static fn (int $a): bool => 0 !== $a % $primeNumber
);
Expand Down

0 comments on commit 71a6145

Please sign in to comment.