Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit a7f03c2

Browse files
committed
typo3
1 parent 6b95383 commit a7f03c2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
],
88
"cSpell.dictionaries": ["custom", "wordsEn"],
99
"cSpell.allowCompoundWords": true,
10+
"search.useIgnoreFiles": false,
1011

1112
}

docs/plugins/event-hierarchy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ slug: /plugins/EventHierarchy
1111

1212
We have two main events in our `Data Service Generator (DSG)` service. One for the server creation and the other for the admin-ui creation. **These events are running simultaneously, and there is no guarantee which will finish first**
1313

14-
Each of these main events includes other events to create the server’s files and the admin-ui’s files (in our source code it is sometimes referred as and `modules`).
14+
Each of these main events includes other events to create the server’s files and the admin-ui files (in our source code it is sometimes referred as and `modules`).
1515

1616
The following diagram represents the execution order of the events in DSG.
1717

docs/plugins/example-plugin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The most straightforward example to illustrate this development workflow is the
2121

2222
- We use Prisma as a ORM and Prisma supports MySQL as a provider - changing the provider on Prisma Schema.
2323
- We use environment variable for the Prisma schema database’s URL and for the docker-compose values - change the environment variables where needed and their values.
24-
- Unexpected behaviors: the Prisma’s MySQL provider does not support lists of primitive types
24+
- Unexpected behaviors: the Prisma MySQL provider does not support lists of primitive types
2525

2626
Translating the above sections to events:
2727

@@ -50,7 +50,7 @@ register(): Events {
5050

5151
`CreateServer` : before
5252

53-
On this event we are taking care of the Prisma’s limitation regrading list of primitives values on MySQL provider.
53+
On this event we are taking care of the Prisma limitation regrading list of primitives values on MySQL provider.
5454

5555
This is also a good example for a use case where the error should be thrown from the plugin itself.
5656

0 commit comments

Comments
 (0)