From 3e216d8aa7db4f1416575d4d2009db9f8667cb4a Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Sat, 4 May 2024 18:12:49 +0200 Subject: [PATCH] Fix typo on "Test your API" guide page --- docs/guides/test-your-api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/test-your-api.php b/docs/guides/test-your-api.php index 0b4faf5541a..7749ccc920c 100644 --- a/docs/guides/test-your-api.php +++ b/docs/guides/test-your-api.php @@ -38,7 +38,7 @@ public function testGetCollection(): void // We provide assertions based on your resource's JSON Schema to save time asserting that the data // matches an expected format, for example here with a collection. $this->assertMatchesResourceCollectionJsonSchema(Book::class); - // PHPUnit default assertios are also available. + // PHPUnit default assertions are also available. $this->assertCount(0, $response->toArray()['hydra:member']); } }