diff --git a/docs/Applicaton-flow.md b/docs/Application-flow.md similarity index 100% rename from docs/Applicaton-flow.md rename to docs/Application-flow.md diff --git a/docs/Properties.md b/docs/Properties.md index 22f6d1a..aca1ad5 100644 --- a/docs/Properties.md +++ b/docs/Properties.md @@ -103,7 +103,7 @@ Additionally, ThemeProperties will have the following public API: ## LibraryProperties -For libraries, you can use the LibraryProperties which give you context based on your composer.json. You can boostrap your standalone-library like following: +For libraries, you can use the LibraryProperties which give you context based on your composer.json. You can bootstrap your standalone-library like following: ```php use Inpsyde\Modularity\Properties; diff --git a/tests/unit/Properties/LibraryPropertiesTest.php b/tests/unit/Properties/LibraryPropertiesTest.php index 4f2c75f..8523b11 100644 --- a/tests/unit/Properties/LibraryPropertiesTest.php +++ b/tests/unit/Properties/LibraryPropertiesTest.php @@ -107,7 +107,7 @@ public function testForLibraryAllProperties(): void $expectedUri = 'http://github.com/inpsyde/modularity'; $expectedVersion = '1.0'; $expectedPhpVersion = "7.4"; - $expecteWpVersion = "5.3"; + $expectedWpVersion = "5.3"; $expectedKeywords = ["expected", "keywords"]; $composerJsonData = [ @@ -130,7 +130,7 @@ public function testForLibraryAllProperties(): void "textDomain" => $expectedTextDomain, "uri" => $expectedUri, "version" => $expectedVersion, - "requiresWp" => $expecteWpVersion, + "requiresWp" => $expectedWpVersion, ], ], ]; @@ -155,7 +155,7 @@ public function testForLibraryAllProperties(): void static::assertSame($expectedTextDomain, $testee->textDomain()); static::assertSame($expectedUri, $testee->uri()); static::assertSame($expectedVersion, $testee->version()); - static::assertSame($expecteWpVersion, $testee->requiresWp()); + static::assertSame($expectedWpVersion, $testee->requiresWp()); static::assertSame($expectedPhpVersion, $testee->requiresPhp()); }