Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Aug 31, 2017
1 parent 0547e5b commit c9bf128
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
- [new] using `AttachmentPayload` to send cached attachment:

```js
client.sendImage(USER_ID, { attachmend_id: '55688' });
client.sendAudio(USER_ID, { attachmend_id: '55688' });
client.sendVideo(USER_ID, { attachmend_id: '55688' });
client.sendFile(USER_ID, { attachmend_id: '55688' });
client.sendImage(USER_ID, { attachment_id: '55688' });
client.sendAudio(USER_ID, { attachment_id: '55688' });
client.sendVideo(USER_ID, { attachment_id: '55688' });
client.sendFile(USER_ID, { attachment_id: '55688' });
```

0.3.0 / 2017-08-29
Expand Down
8 changes: 4 additions & 4 deletions packages/messaging-api-messenger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ client.sendAudio(USER_ID, 'https://example.com/audio.mp3');
using `AttachmentPayload` to send cached attachment:

```js
client.sendAudio(USER_ID, { attachmend_id: '55688' });
client.sendAudio(USER_ID, { attachment_id: '55688' });
```

or using `ReadStream` created from local file:
Expand Down Expand Up @@ -244,7 +244,7 @@ client.sendImage(USER_ID, 'https://example.com/vr.jpg');
using `AttachmentPayload` to send cached attachment:

```js
client.sendImage(USER_ID, { attachmend_id: '55688' });
client.sendImage(USER_ID, { attachment_id: '55688' });
```

or using `ReadStream` created from local file:
Expand Down Expand Up @@ -282,7 +282,7 @@ client.sendVideo(USER_ID, 'https://example.com/video.mp4');
using `AttachmentPayload` to send cached attachment:

```js
client.sendVideo(USER_ID, { attachmend_id: '55688' });
client.sendVideo(USER_ID, { attachment_id: '55688' });
```

or using `ReadStream` created from local file:
Expand Down Expand Up @@ -320,7 +320,7 @@ client.sendFile(USER_ID, 'https://example.com/receipt.pdf');
using `AttachmentPayload` to send cached attachment:

```js
client.sendFile(USER_ID, { attachmend_id: '55688' });
client.sendFile(USER_ID, { attachment_id: '55688' });
```

or using `ReadStream` created from local file:
Expand Down

0 comments on commit c9bf128

Please sign in to comment.