diff --git a/59.md b/59.md index d5d58a0f..7ce7cfb2 100644 --- a/59.md +++ b/59.md @@ -57,12 +57,12 @@ The tags should be used to represent the Relay's abilities and meta at a point i 9. `"events" == tagEvents[0]` Number of events on relay. `tagEvents[]` **may** be included in the `event.tags[]` array. `tagEvents[1]` **must** be string. There **should** only be **one (1)** `tagEvents[]` ```json -["events", "502341"], //tagIp[] +["events", "502341"], //tagEvents[] ``` 10. `"users" == tagUsers[0]` Relay IP. `tagUsers[]` **may** be included in the `event.tags[]` array. `tagUsers[1]` **must** be string. There **should** be no more than **one (1)** `tagUsers[]` ```json -["users","37482"] +["users","37482"] //tagUsers[] ``` Example with Minimum Requirements: @@ -97,7 +97,9 @@ Example with all Tags: ["open","true"], ["read","true"], ["write","false"], - ["ssl","true"] + ["ssl","true"], + ["events", "502341"], + ["users","37482"], ] } ```