diff --git a/README.md b/README.md
index 1af2b67..c4567ef 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# DevWiki
-등록된 멤버가 기술 용어, 면접 Q&A, 상황 시뮬레이션을 함께 작성하고 토론하는 회원 전용 개발자 지식 베이스입니다. Next.js와 Supabase를 사용합니다.
+등록된 멤버가 기술 용어, 면접 Q&A, 상황 시뮬레이션을 함께 작성하고 댓글로 의견을 남기는 회원 전용 개발자 지식 베이스입니다. Next.js와 Supabase를 사용합니다.
## Stack
@@ -14,8 +14,8 @@
- Member-only access, role-based editing, profile nicknames
- Per-member favorites
- Database-backed full-text search with body snippets
-- Expanded, threaded document discussions
-- Recent discussion activity on the home dashboard
+- Expanded, threaded document comments
+- Recent comment activity on the home dashboard
- Share metadata, generated app icons, and document link copying
## Local setup
@@ -32,7 +32,7 @@ Supabase 연결 전에는 데모 문서가 보입니다. 실제 저장을 사용
- `기술 용어`: 기술 개념, 실무 예시, 꼬리 질문
- `면접 Q&A`: 기술/인성 질문과 답변 Tip
-- `상황 시뮬레이션`: 서술형 상황 질문과 토론
+- `상황 시뮬레이션`: 서술형 상황 질문과 트레이드오프
Supabase가 연결된 환경에서는 로그인한 active member만 문서를 읽을 수 있습니다. `공개` 상태는 인터넷 공개가 아니라 전체 멤버 기본 목록에 노출된다는 뜻입니다.
홈은 통합 검색과 개인 즐겨찾기 현황을 보여주는 메인 화면이고, `/terms`, `/interviews`, `/scenarios`에서 섹션별 문서를 탐색합니다.
diff --git a/docs/releases/v0.10.0.md b/docs/releases/v0.10.0.md
index 0504103..3b52a6e 100644
--- a/docs/releases/v0.10.0.md
+++ b/docs/releases/v0.10.0.md
@@ -8,4 +8,4 @@ Release date: 2026-06-02
### Features
-* 최근 토론 활동 추가 ([39f23a5](https://github.com/geekgoing/devwiki/commit/39f23a55b4178443a987e43fd805e0ab1490489b))
+* 최근 댓글 활동 추가 ([39f23a5](https://github.com/geekgoing/devwiki/commit/39f23a55b4178443a987e43fd805e0ab1490489b))
diff --git a/src/app/(protected)/documents/[slug]/edit/page.tsx b/src/app/(protected)/documents/[slug]/edit/page.tsx
index 21e8e1e..637daf1 100644
--- a/src/app/(protected)/documents/[slug]/edit/page.tsx
+++ b/src/app/(protected)/documents/[slug]/edit/page.tsx
@@ -64,7 +64,8 @@ export default async function EditDocumentPage({
editor 권한이 필요합니다
- viewer는 문서를 읽고 토론할 수 있지만 문서 수정은 할 수 없습니다.
+ viewer는 문서를 읽고 댓글을 남길 수 있지만 문서 수정은 할 수
+ 없습니다.
diff --git a/src/app/(protected)/documents/new/page.tsx b/src/app/(protected)/documents/new/page.tsx
index 56f1bb4..46ab91d 100644
--- a/src/app/(protected)/documents/new/page.tsx
+++ b/src/app/(protected)/documents/new/page.tsx
@@ -50,7 +50,7 @@ export default async function NewDocumentPage({
editor 권한이 필요합니다
- viewer는 문서를 읽고 토론할 수 있지만 새 문서 작성은 할 수
+ viewer는 문서를 읽고 댓글을 남길 수 있지만 새 문서 작성은 할 수
없습니다.
diff --git a/src/app/(protected)/help/page.tsx b/src/app/(protected)/help/page.tsx
index 3557376..8b307ad 100644
--- a/src/app/(protected)/help/page.tsx
+++ b/src/app/(protected)/help/page.tsx
@@ -21,14 +21,14 @@ const contentSections = [
},
{
title: "상황 시뮬레이션",
- body: "서술형 상황 질문을 문제 이해, 해결 전략, 트레이드오프 중심으로 토론합니다.",
+ body: "서술형 상황 질문을 문제 이해, 해결 전략, 트레이드오프 중심으로 정리합니다.",
},
];
const roleRows = [
- ["owner", "멤버 관리, 문서 작성/수정/복원, 이미지 업로드, 토론"],
- ["editor", "문서 작성/수정/복원, 이미지 업로드, 토론"],
- ["viewer", "문서 읽기와 토론 댓글 작성"],
+ ["owner", "멤버 관리, 문서 작성/수정/복원, 이미지 업로드, 댓글 작성"],
+ ["editor", "문서 작성/수정/복원, 이미지 업로드, 댓글 작성"],
+ ["viewer", "문서 읽기와 댓글 작성"],
];
export default async function HelpPage() {
@@ -130,12 +130,12 @@ export default async function HelpPage() {
- 토론
+ 댓글
- 문서마다 토론 영역이 있습니다. 질문의 의도, 더 좋은 답변 흐름,
+ 문서마다 댓글 영역이 있습니다. 질문의 의도, 더 좋은 답변 흐름,
실제 면접에서 받은 꼬리 질문을 댓글로 남기고, 정리된 내용은
editor 이상이 문서 본문에 반영합니다.