diff --git a/README.md b/README.md index 42a1504..538c3ee 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ This will generate the following functions: | Function Name | Arguments | Description | |---------------|-----------|-------------| -| `get-article-list` | (&optional `query`) | Get a list of articles. | -| `get-article-list-detail` | (`id`, &optional `query`) | Get details of a specific article by ID. | -| `create-article` | (`content`, &optional `query`) | Create a new article with the given content. | +| `get-article-list` | (&key `query`) | Get a list of articles. | +| `get-article-list-detail` | (`id`, &key `query`) | Get details of a specific article by ID. | +| `create-article` | (`content`, &key `query`) | Create a new article with the given content. | | `update-article` | (`id`, `content`) | Update an existing article by its ID with new content. | | `delete-article` | (`id`) | Delete an article by its ID. |