From b58efb08a0ec2b1ff449422e9a58a09c88420e4e Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Sun, 22 Jan 2023 09:51:36 -0500 Subject: [PATCH] NIP-28 Add missing comma's in tags --- 28.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/28.md b/28.md index f37299ee..0862e72d 100644 --- a/28.md +++ b/28.md @@ -54,7 +54,7 @@ Clients SHOULD use [NIP-10](10.md) marked "e" tags to recommend a relay. ```json { "content": "{\"name\": \"Updated Demo Channel\", \"about\": \"Updating a test channel.\", \"picture\": \"https://placekitten.com/201/201\"}", - "tags": [["e", ]], + "tags": [["e", , ]], ... } ``` @@ -73,7 +73,7 @@ Root message: ```json { "content": , - "tags": [["e", "root"]], + "tags": [["e", , , "root"]], ... } ``` @@ -84,8 +84,8 @@ Reply to another message: { "content": , "tags": [ - ["e", "reply"], - ["p", ], + ["e", , , "reply"], + ["p", , ], ... ], ...