diff --git a/README.md b/README.md
index a44cd5d..aa425b3 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 Rails、Action cable、Vueで構成された簡素なリアルタイムチャット。
 
 # 文脈
-[Entering](https://riq0h.jp/2023/04/30/232125/)で主人公が作っていたチャットサービスをモダンな技術で再現した。
+[Entering](https://riq0h.jp/2023/04/30/232125/)でヒロインと主人公が作っていたチャットサービスをモダンな技術で再現した。
 
 ![](/img/img.png)
 
diff --git a/frontend/src/components/ChatRoom.vue b/frontend/src/components/ChatRoom.vue
index a01e212..133d627 100644
--- a/frontend/src/components/ChatRoom.vue
+++ b/frontend/src/components/ChatRoom.vue
@@ -71,7 +71,6 @@ export default {
     this.createSubscription()
   },
   methods: {
-    // 追加
     createSubscription() {
       this.subscription = this.cable.subscriptions.create(
         { channel: 'RoomChannel', room_id: this.roomId },