Skip to content

Commit 68d2a53

Browse files
committed
Minor fixes
1 parent 9ba4376 commit 68d2a53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,10 @@ Convert addresses data to [RFC 2822](http://faqs.org/rfcs/rfc2822.html) string,
295295
```php
296296
to_rfc2822_email([
297297
['address' => '[email protected]', 'name' => 'John Doe'],
298-
['address' => 'mary[email protected]'],
298+
['address' => 'jane[email protected]'],
299299
]);
300300
301-
301+
302302
```
303303
304304
Also, it supports simplified syntax for a single address:
@@ -316,10 +316,10 @@ Convert addresses data to [SwiftMailer-suitable format](https://swiftmailer.org/
316316
```php
317317
to_swiftmailer_emails([
318318
['address' => '[email protected]', 'name' => 'John Doe'],
319-
['address' => 'mary[email protected]'],
319+
['address' => 'jane[email protected]'],
320320
]);
321321
322-
// ["[email protected]" => "John Doe", "mary[email protected]"]
322+
// ["[email protected]" => "John Doe", "jane[email protected]"]
323323
```
324324
325325
Also, it supports simplified syntax for a single address:

0 commit comments

Comments
 (0)