Skip to content

Commit

Permalink
Fix typo in CHANGELOG (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
straku authored Aug 16, 2023
1 parent 3b1fd2f commit 438ed9f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- **Breaking** The `addGetMethods` and `addPostMethods` methods have been removed. Additional
methods can be implemented using the `getRequest` or `postRequest` methods.
- **Breaking** The following legacy post creation methods have been removed.
- `createAudioPost`: use `ceatePost` with `{type: "audio"}`.
- `createChatPost`: use `ceatePost` with `{type: "chat"}`.
- `createLinkPost`: use `ceatePost` with `{type: "link"}`.
- `createPhotoPost`: use `ceatePost` with `{type: "photo"}`.
- `createQuotePost`: use `ceatePost` with `{type: "quote"}`.
- `createTextPost`: use `ceatePost` with `{type: "text"}`.
- `createVideoPost`: use `ceatePost` with `{type: "video"}`.
- `createAudioPost`: use `createPost` with `{type: "audio"}`.
- `createChatPost`: use `createPost` with `{type: "chat"}`.
- `createLinkPost`: use `createPost` with `{type: "link"}`.
- `createPhotoPost`: use `createPost` with `{type: "photo"}`.
- `createQuotePost`: use `createPost` with `{type: "quote"}`.
- `createTextPost`: use `createPost` with `{type: "text"}`.
- `createVideoPost`: use `createPost` with `{type: "video"}`.
- **Breaking** The `request` option has been removed.
- Request objects are no longer returned from API methods.

Expand Down

0 comments on commit 438ed9f

Please sign in to comment.