upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoji Shidara <dara@shidara.net>2025-08-13 21:26:30 +0900
committerGitHub <noreply@github.com>2025-08-13 21:26:30 +0900
commit0e911333207cb6865d43e76d746e30650c413f23 (patch)
treebc8caafc4d53343612f6be7f9fcc86452db97e04
parent252f746010cebafb3f98720ec5e8fb2634f70b77 (diff)
Fix typos (#2014)
-rw-r--r--34.md2
-rw-r--r--55.md2
-rw-r--r--61.md2
-rw-r--r--73.md4
-rw-r--r--77.md2
-rw-r--r--87.md2
6 files changed, 7 insertions, 7 deletions
diff --git a/34.md b/34.md
index 65f3388..ab80a93 100644
--- a/34.md
+++ b/34.md
@@ -45,7 +45,7 @@ An optional source of truth for the state of branches and tags in a repository.
45 "kind": 30618, 45 "kind": 30618,
46 "content": "", 46 "content": "",
47 "tags": [ 47 "tags": [
48 ["d", "<repo-id>"], // matches the identifier in the coresponding repository announcement 48 ["d", "<repo-id>"], // matches the identifier in the corresponding repository announcement
49 ["refs/<heads|tags>/<branch-or-tag-name>","<commit-id>"] 49 ["refs/<heads|tags>/<branch-or-tag-name>","<commit-id>"]
50 ["HEAD", "ref: refs/heads/<branch-name>"] 50 ["HEAD", "ref: refs/heads/<branch-name>"]
51 ] 51 ]
diff --git a/55.md b/55.md
index 6d2b92a..abc316e 100644
--- a/55.md
+++ b/55.md
@@ -91,7 +91,7 @@ Signer MUST answer multiple permissions with an array of results
91val results = listOf( 91val results = listOf(
92 Result( 92 Result(
93 package = signerPackageName, 93 package = signerPackageName,
94 result = eventSignture, 94 result = eventSignature,
95 id = intentId 95 id = intentId
96 ) 96 )
97) 97)
diff --git a/61.md b/61.md
index fcfc59b..fd11d3e 100644
--- a/61.md
+++ b/61.md
@@ -78,7 +78,7 @@ Clients should REQ for nutzaps:
78* Filtering with `#u` for mints they expect to receive ecash from. 78* Filtering with `#u` for mints they expect to receive ecash from.
79 * this is to prevent even interacting with mints the user hasn't explicitly signaled. 79 * this is to prevent even interacting with mints the user hasn't explicitly signaled.
80* Filtering with `since` of the most recent `kind:7376` event the same user has created. 80* Filtering with `since` of the most recent `kind:7376` event the same user has created.
81 * this can be used as a marker of the nutzaps that have already been swaped by the user -- clients might choose to use other kinds of markers, including internal state -- this is just a guidance of one possible approach. 81 * this can be used as a marker of the nutzaps that have already been swapped by the user -- clients might choose to use other kinds of markers, including internal state -- this is just a guidance of one possible approach.
82 82
83`{ "kinds": [9321], "#p": ["my-pubkey"], "#u": ["<mint-1>", "<mint-2>"], "since": <latest-created_at-of-kind-7376> }`. 83`{ "kinds": [9321], "#p": ["my-pubkey"], "#u": ["<mint-1>", "<mint-2>"], "since": <latest-created_at-of-kind-7376> }`.
84 84
diff --git a/73.md b/73.md
index d883e79..7fb9a3c 100644
--- a/73.md
+++ b/73.md
@@ -6,7 +6,7 @@ External Content IDs
6 6
7`draft` `optional` 7`draft` `optional`
8 8
9There are certain established global content identifiers such as [Book ISBNs](https://en.wikipedia.org/wiki/ISBN), [Podcast GUIDs](https://podcastnamespace.org/tag/guid), and [Movie ISANs](https://en.wikipedia.org/wiki/International_Standard_Audiovisual_Number) that are useful to reference in nostr events so that clients can query all the events assosiated with these ids. 9There are certain established global content identifiers such as [Book ISBNs](https://en.wikipedia.org/wiki/ISBN), [Podcast GUIDs](https://podcastnamespace.org/tag/guid), and [Movie ISANs](https://en.wikipedia.org/wiki/International_Standard_Audiovisual_Number) that are useful to reference in nostr events so that clients can query all the events associated with these ids.
10 10
11 11
12`i` tags are used for referencing these external content ids, with `k` tags representing the external content id kind so that clients can query all the events for a specific kind. 12`i` tags are used for referencing these external content ids, with `k` tags representing the external content id kind so that clients can query all the events for a specific kind.
@@ -47,7 +47,7 @@ For the webpage "https://myblog.example.com/post/2012-03-27/hello-world" the "i"
47 47
48- Book ISBN: `["i", "isbn:9780765382030"]` - https://isbnsearch.org/isbn/9780765382030 48- Book ISBN: `["i", "isbn:9780765382030"]` - https://isbnsearch.org/isbn/9780765382030
49 49
50Book ISBNs MUST be referenced _**without hyphens**_ as many book search APIs return the ISBNs without hyphens. Removing hypens from ISBNs is trivial, whereas adding the hyphens back in is non-trivial requiring a library. 50Book ISBNs MUST be referenced _**without hyphens**_ as many book search APIs return the ISBNs without hyphens. Removing hyphens from ISBNs is trivial, whereas adding the hyphens back in is non-trivial requiring a library.
51 51
52### Podcasts: 52### Podcasts:
53 53
diff --git a/77.md b/77.md
index ffdb436..dd5ef07 100644
--- a/77.md
+++ b/77.md
@@ -99,7 +99,7 @@ When finished, the client should tell the relay it can release its resources wit
99 99
100### Preparation 100### Preparation
101 101
102There are two protocol participants: Client and server. The client creates an initial message and transmits it to the server, which replies with its own message in response. The client continues querying the server until it is satisifed, and then terminates the protocol. Messages in either direction have the same format. 102There are two protocol participants: Client and server. The client creates an initial message and transmits it to the server, which replies with its own message in response. The client continues querying the server until it is satisfied, and then terminates the protocol. Messages in either direction have the same format.
103 103
104Each participant has a collection of records. A records consists of a 64-bit numeric timestamp and a 256-bit ID. Each participant starts by sorting their items according to timestamp, ascending. If two timestamps are equal then items are sorted lexically by ID, ascending by first differing byte. Items may not use the max uint64 value (`2**64 - 1`) as a timestamp since this is reserved as a special "infinity" value. 104Each participant has a collection of records. A records consists of a 64-bit numeric timestamp and a 256-bit ID. Each participant starts by sorting their items according to timestamp, ascending. If two timestamps are equal then items are sorted lexically by ID, ascending by first differing byte. Items may not use the max uint64 value (`2**64 - 1`) as a timestamp since this is reserved as a special "infinity" value.
105 105
diff --git a/87.md b/87.md
index c6701d5..0010038 100644
--- a/87.md
+++ b/87.md
@@ -41,7 +41,7 @@ There are three actors to this workflow:
41} 41}
42``` 42```
43 43
44The recommendation event is a parameterized-replacable event so that a user can change edit their recommendation without creating a new event. 44The recommendation event is a parameterized-replaceable event so that a user can change edit their recommendation without creating a new event.
45 45
46The `d` tag in `kind:38000` is the `kind:38173`/`kind:38172` event identifier this event is recommending, if no event exists, the `d` tag can still be calculated from the mint's pubkey/id. 46The `d` tag in `kind:38000` is the `kind:38173`/`kind:38172` event identifier this event is recommending, if no event exists, the `d` tag can still be calculated from the mint's pubkey/id.
47The `k` tag is the kind number that corresponds to the event kind that the user is recommending, in this case `kind:38173` for fedimints and `kind:38172` for cashu mints. 47The `k` tag is the kind number that corresponds to the event kind that the user is recommending, in this case `kind:38173` for fedimints and `kind:38172` for cashu mints.