From 2a2fbc3202d371585224d7bc88a1bcf34a030cf2 Mon Sep 17 00:00:00 2001 From: dskvr Date: Tue, 7 Feb 2023 15:15:47 +0100 Subject: [PATCH] Consistent formatting --- 59.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/59.md b/59.md index 3786df5f..717de0d1 100644 --- a/59.md +++ b/59.md @@ -21,11 +21,11 @@ Relay status events have **two** (1) required tags and **eight** (8) optional ta The tags should be used to represent the Relay's abilities and meta at a point in time. Below the `tags schema` is expressed using pseudo-types for reasons of communication and brevity, for example `tagDescriptor[]`. -1. `"d" == tagId[0]` The relay URL (`#d`). The `#d` tag **must** be included in the `event.tags[]` array. `tagId[1]` **must** be the relay websocket URL. The URL **should** be normalized. +1. `"d" == tagId[0]` The relay URL. The `#d` tag **must** be included in the `event.tags[]` array. `tagId[1]` **must** be the relay websocket URL. The URL **should** be normalized. ```json ["d", "wss://history.nostr.watch/"] //tagId[] ``` -2. `"o" == tagOnline[0]` Is the relay online (`#o`). `tagOnline[]` **may** be included in the `event.tags[]` array. `tagOnline[1]` **must** be type string as exactly `true` or `false` +2. `"o" == tagOnline[0]` Is the relay online. `tagOnline[]` **may** be included in the `event.tags[]` array. `tagOnline[1]` **must** be type string as exactly `true` or `false` ```json ["o", "true"] //tagOnline[] ```