Merge pull request #2841 from justinpage/update-constructor-new-article

Include "us" in article sentence
This commit is contained in:
Ilya Kantor 2022-02-03 13:26:54 +03:00 committed by GitHub
commit d92b1a0eae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
# Constructor, operator "new"
The regular `{...}` syntax allows to create one object. But often we need to create many similar objects, like multiple users or menu items and so on.
The regular `{...}` syntax allows us to create one object. But often we need to create many similar objects, like multiple users or menu items and so on.
That can be done using constructor functions and the `"new"` operator.