Skip to content

Commit a76ec38

Browse files
committed
chore: fix some proselint issues
1 parent 2de709d commit a76ec38

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.proselintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"typography.symbols": false,
44
"typography.exclamation": false,
55
"hyperbole.misc": false,
6-
"cliches.misc": false
6+
"cliches.misc": false,
7+
"lexical_illusions.misc": false
78
}
89
}

core/data-persisters.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ final class BlogPostDataPersister implements ContextAwareDataPersisterInterface,
184184
}
185185
```
186186

187-
This is very useful when using [`Messenger` with API Platform](messenger.md) as you may want to do something asynchronously with the data but still call the default Doctrine data persister, for example:
187+
This is useful when using [`Messenger` with API Platform](messenger.md) as you may want to do something asynchronously with the data but still call the default Doctrine data persister, for example:
188+
188189
```php
189190
namespace App\DataPersister;
190191

@@ -225,6 +226,7 @@ final class BlogPostDataPersister implements ContextAwareDataPersisterInterface,
225226
}
226227
}
227228
```
229+
228230
```yaml
229231
# api/config/services.yaml
230232
services:

core/operations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ It is mandatory to set `_api_resource_class` and `_api_item_operation_name` (or
450450
operation) in the parameters of the route (`defaults` key). It allows API Platform to work with the Symfony routing system.
451451

452452
Alternatively, you can also use a traditional Symfony controller and YAML or XML route declarations. The following example does
453-
the exact same thing as the previous example:
453+
the same thing as the previous example:
454454

455455
```php
456456
<?php

0 commit comments

Comments
 (0)