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 #39

Merged
merged 1 commit into from
May 11, 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Use this project as a starter for your [modular][modularity] WordPress plugin!

1. Use this template

This Github repository is a [template][template-repo]. [Use it][use-template-repo] to create a project of your own from.
This GitHub repository is a [template][template-repo]. [Use it][use-template-repo] to create a project of your own from.

Of course, you can always clone and push it elsewhere manually, or use another method of forking, if more appropriate.

Expand Down Expand Up @@ -95,7 +95,7 @@ Use this project as a starter for your [modular][modularity] WordPress plugin!
to get related IDE features; see [Adding Plugins][adding-plugins] for more information on this subject.

- Module `composer.json`:
This bootstrap uses the awesome [`composer-merge-plugin`][] to keep module depedencies
This bootstrap uses the awesome [`composer-merge-plugin`][] to keep module dependencies
together with modules. This allows keeping track of which dependencies belong to which
modules, detect dependency incompatibilities, and moving modules out of the package
into packages of their own when necessary.
Expand Down Expand Up @@ -374,7 +374,7 @@ because the path to the xDebug extension depends on its version, that path will
also change, invalidating the currently configured path.
To fix this, the "Debugger extension" fields in the interpreter settings screen
needs to be updated. You can run `docker compose run test ls -lah /usr/local/lib/php/extensions`
to see the list of extensions. One of them should say someting like
to see the list of extensions. One of them should say something like
`no-debug-non-zts-20170718`. Change the corresponding part of the "Debugger extension"
path value to that string.

Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/AbstractApplicationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class AbstractApplicationTestCase extends AbstractModularTestCase
* @param array<string, callable(ContainerInterface, mixed): mixed> $extensions Additional extensions.
*
* @throws ModuleExceptionInterface If problem bootstrapping a particular module.
* @throws RuntimeException If problem bootstraping.
* @throws RuntimeException If problem bootstrapping.
*/
protected function bootstrapApplication(array $factories = [], array $extensions = []): ContainerInterface
{
Expand Down
4 changes: 2 additions & 2 deletions tests/phpunit/AbstractModularTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AbstractModularTestCase extends AbstractTestCase
*
* @return ContainerInterface The new container.
* @throws ModuleExceptionInterface If problem bootstrapping a particular module.
* @throws RuntimeException If problem bootstraping.
* @throws RuntimeException If problem bootstrapping.
*/
protected function bootstrapProviders(iterable $serviceProviders = []): ContainerInterface
{
Expand All @@ -43,7 +43,7 @@ protected function bootstrapProviders(iterable $serviceProviders = []): Containe
*
* @return ContainerInterface The new container.
* @throws ModuleExceptionInterface If problem bootstrapping a particular module.
* @throws RuntimeException If problem bootstraping.
* @throws RuntimeException If problem bootstrapping.
*/
protected function bootstrapModules(
iterable $modules = [],
Expand Down
Loading