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' => 'john.doe@example.com', 'name' => 'John Doe'],
298-
['address' => 'mary.smith@example.com'],
298+
['address' => 'jane.smith@example.com'],
299299
]);
300300
301-
// "John Doe <john.doe@example.com>, mary.smith@example.com"
301+
// "John Doe <john.doe@example.com>, jane.smith@example.com"
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' => 'john.doe@example.com', 'name' => 'John Doe'],
319-
['address' => 'mary.smith@example.com'],
319+
['address' => 'jane.smith@example.com'],
320320
]);
321321
322-
// ["john.doe@example.com" => "John Doe", "mary.smith@example.com"]
322+
// ["john.doe@example.com" => "John Doe", "jane.smith@example.com"]
323323
```
324324
325325
Also, it supports simplified syntax for a single address:

0 commit comments

Comments
 (0)