From 0bd36185996d0fe5c7741f2816178ccf8e8c0c4a Mon Sep 17 00:00:00 2001
From: Akira Tempaku <paku@skyizwhite.dev>
Date: Sat, 19 Apr 2025 14:53:18 +0900
Subject: [PATCH] Update README

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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. |