Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #155

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Steps/BaseStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public function resetAfterRun(): void
* return StepOutputType::AssociativeArrayOrObject.
* If it will only yield scalar (string, int, float, bool) outputs, return StepOutputType::Scalar.
*
* If it can potentially yield both types, but you can determin what it will yield, based on the state of the
* If it can potentially yield both types, but you can determine what it will yield, based on the state of the
* class, please implement this. Only if it can't be defined upfront, because it depends on the input, return
* StepOutputType::Mixed.
*
Expand Down
2 changes: 1 addition & 1 deletion tests/Cache/_cachefilecontent
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ $query = Query::fromString('foo=1&bar=2&baz=3&quz=4')
<p class="mb-3 text-center">
<a class="text-white hover:text-creen-100 cursor-pointer font-semibold mr-10"
href="https://twitter.com/crwlrsoft" target="_blank" rel="noopener"><svg class="inline-block align-middle h-10 w-10 mr-3"><use href="#twitter" /></svg> <span class="align-middle">Twitter</span></a> <a class="text-white hover:text-creen-100 cursor-pointer font-semibold"
href="https://github.com/crwlrsoft" target="_blank" rel="noopener"><svg class="inline-block align-middle h-6 w-6 mr-3"><use href="#github" /></svg> <span class="align-middle">Github</span></a> </p>
href="https://github.com/crwlrsoft" target="_blank" rel="noopener"><svg class="inline-block align-middle h-6 w-6 mr-3"><use href="#github" /></svg> <span class="align-middle">GitHub</span></a> </p>

<p class="text-center">
<a class="text-white hover:text-creen-100 cursor-pointer font-semibold mr-3"
Expand Down
4 changes: 2 additions & 2 deletions tests/CrawlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ function () {
expect($step->loaders[2])->toBeInstanceOf(PhantasyLoader::class);
});

it('passes only a certain loader when user choses one by calling useLoader() on a step', function () {
it('passes only a certain loader when user chooses one by calling useLoader() on a step', function () {
$step = new LoaderCollectingStep();

(new MultiLoaderCrawler())->addStep($step->useLoader('http'));
Expand All @@ -228,7 +228,7 @@ function () {
expect($step->loaders[0])->toBeInstanceOf(HttpLoader::class);
});

it('passes only a certain loader when user choses one by calling useLoader() on a step inside a group', function () {
it('passes only a certain loader when user chooses one by calling useLoader() on a step inside a group', function () {
$crawler = new MultiLoaderCrawler();

$step = new LoaderCollectingStep();
Expand Down
2 changes: 1 addition & 1 deletion tests/_Integration/_Server/BlogPostWithJsonLd.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<div class="tiles">
<div class="tile-hidden">
<p class="no-margin-top">Follow crwlr.software on</p>
<a href="https://github.com/crwlrsoft" target="_blank" rel="noopener"title="crwlr.software on Github">Github</a>
<a href="https://github.com/crwlrsoft" target="_blank" rel="noopener"title="crwlr.software on GitHub">GitHub</a>
<a href="https://twitter.com/crwlrsoft" target="_blank" rel="noopener"title="Follow crwlr.software on Twitter!">Twitter</a>
</div>
<div class="tile-hidden">
Expand Down