Remove extra backticks in code blocks and change unnecessary gender-specific pronouns to be gender neutral

This commit is contained in:
Terry Yiu
2024-11-03 22:33:48 +01:00
parent c275ae74eb
commit 087437042b
4 changed files with 5 additions and 5 deletions

2
59.md
View File

@@ -245,7 +245,7 @@ const rumor = createRumor(
const seal = createSeal(rumor, senderPrivateKey, recipientPublicKey)
const wrap = createWrap(seal, recipientPublicKey)
// Recipient unwraps with his/her private key.
// Recipient unwraps with their private key.
const unwrappedSeal = nip44Decrypt(wrap, recipientPrivateKey)
const unsealedRumor = nip44Decrypt(unwrappedSeal, recipientPrivateKey)