From d2f8eddf34ebf04344e9aeb28ea09eb30d91a7c3 Mon Sep 17 00:00:00 2001 From: Jason Yoo Date: Sun, 18 Feb 2024 14:03:01 +0900 Subject: [PATCH] fix: typo --- proto/history.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/history.proto b/proto/history.proto index fef4399..4d9c69c 100644 --- a/proto/history.proto +++ b/proto/history.proto @@ -10,9 +10,9 @@ enum HistoryType { HISTORY_TYPE_COMMUNICATION = 2; } -message FeebackHistoryDTO { +message FeedbackHistoryDTO { HistoryType type = 1; - oneof feeback { + oneof feedback { PronunciationFeedbackDTO pronunciation = 2; CommunicationFeedbackDTO communication = 3; } @@ -23,5 +23,5 @@ message ListHistoriesRequest { } message ListHistoriesResponse { - repeated FeebackHistoryDTO histories = 1; + repeated FeedbackHistoryDTO histories = 1; }