From 1948ee524ecbb5e5f74abeeaad80700d519bf5bb Mon Sep 17 00:00:00 2001 From: Winter King Date: Tue, 6 Aug 2024 12:57:36 -0600 Subject: [PATCH] Update quickstart.md typo --- docs/getting-started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md index 78f53cf3..7432542d 100644 --- a/docs/getting-started/quickstart.md +++ b/docs/getting-started/quickstart.md @@ -431,7 +431,7 @@ class AuthorData extends Data } ``` -Notice that we've typed the `$posts` property as an array of `PostData` objects using a docblock. This will be very useful later on! The package always needs to know what type of data objects are stored in an array. Off course, when you're storing other types then data objects this is not required but recommended. +Notice that we've typed the `$posts` property as an array of `PostData` objects using a docblock. This will be very useful later on! The package always needs to know what type of data objects are stored in an array. Of course, when you're storing other types then data objects this is not required but recommended. We can now create an author object as such: