From 869d861d3f6ec6ef131bf2d5c1ec4296b3224f5f Mon Sep 17 00:00:00 2001 From: Jimmy Debe <91767824+jimstir@users.noreply.github.com> Date: Thu, 28 Aug 2025 20:43:06 -0400 Subject: [PATCH] Fix typos --- standards/application/qaku.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/standards/application/qaku.md b/standards/application/qaku.md index 849367e..3850c69 100644 --- a/standards/application/qaku.md +++ b/standards/application/qaku.md @@ -124,7 +124,7 @@ The `admins` and `owner` MAY moderate certain published messages making some con ```js { "ModerationMessage" : [ - "hash": string, // The hash of the question + "hash": string, // The hash of the QuestionMessage "moderated": boolean ] } @@ -152,17 +152,16 @@ Also the `owner` can not retrict any `identity` from publishing a message. #### Answered Message The `AnswerMessage` type is generated by clients publishing a answer to a question. -Each `AnswerMessage` SHOULD have a parent `Questionmessage` type. +Each `AnswerMessage` SHOULD have a parent `QuestionMessage` type. ```js { "AnsweredMessage" : [ questionId: string, // The parent QuestionMessage - hash: string, // Hash of - text: string, - timestamp: number, - + hash: string, // Hash of the text + text: string, // The answer content + timestamp: number // The time of publishing the answer content ] }