From 45d05b572e2f151fd600f2ea6821eed1388685d3 Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Sun, 15 Dec 2019 19:08:48 +0400 Subject: [PATCH] Small correction for core.md --- protocol-spec/core.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/protocol-spec/core.md b/protocol-spec/core.md index 596a64a..c005508 100644 --- a/protocol-spec/core.md +++ b/protocol-spec/core.md @@ -42,31 +42,31 @@ interface BaseMessage { /** * Message identifier (used to track the request-response chain) */ - id: string, // + id: string, /** * Type of message (used to determine which extension this message belongs to) */ - type: string, // + type: string, /** * From which entity this message is send */ - from: EntityID, // + from: EntityID, /** * Message recipient */ - to: EntityID, // + to: EntityID, /** * Operation success indicator (used to determine if the error happened while processing request) */ - ok: boolean, // + ok: boolean, /** * Message payload (used to store extra information in message, list of permissible fields in the payload depends on "type" field) */ - payload: Map // + payload: Map } ```