From 215dd9e9aefabcbcd5cd6416ea02f3c67ea26a40 Mon Sep 17 00:00:00 2001 From: mikebolt Date: Wed, 24 May 2023 22:14:01 -0700 Subject: [PATCH] Fix typos, lets -> let's --- blog/2023-01-10-ssi-chat-gpt.md | 2 +- docs/web5/learn/decentralized-identifiers.md | 4 ++-- docs/web5/learn/protocols.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/blog/2023-01-10-ssi-chat-gpt.md b/blog/2023-01-10-ssi-chat-gpt.md index 1e809c009..30779d4a1 100644 --- a/blog/2023-01-10-ssi-chat-gpt.md +++ b/blog/2023-01-10-ssi-chat-gpt.md @@ -31,7 +31,7 @@ The [SSI-SDK](https://github.com/TBD54566975/ssi-sdk) is an implementation of a -Now there is a whole lot of (lets face it: tedious) machinery to get WASM to be compiled from Go (ok if you are really curious you can [read the code](https://github.com/TBD54566975/ssi-sdk/pull/265/)), but the upshot of it is that there is a .wasm file produced which when consumed in just the right way in a web page, allows you to call functions from JavaScript, that look and feel like JavaScript, but are actually running in the web-assembly machiner (and compiled down from Golang). +Now there is a whole lot of (let's face it: tedious) machinery to get WASM to be compiled from Go (ok if you are really curious you can [read the code](https://github.com/TBD54566975/ssi-sdk/pull/265/)), but the upshot of it is that there is a .wasm file produced which when consumed in just the right way in a web page, allows you to call functions from JavaScript, that look and feel like JavaScript, but are actually running in the web-assembly machiner (and compiled down from Golang). Say you had a function in Golang land which looked like this: diff --git a/docs/web5/learn/decentralized-identifiers.md b/docs/web5/learn/decentralized-identifiers.md index 55f11b26f..289a38e03 100644 --- a/docs/web5/learn/decentralized-identifiers.md +++ b/docs/web5/learn/decentralized-identifiers.md @@ -42,7 +42,7 @@ We need an identifier that isn't tied to a centralized authority, that we can ta ### Methods -Now that Alice and Bob know that they need a DID lets take a look at the different kinds of DIDs they can have. +Now that Alice and Bob know that they need a DID let's take a look at the different kinds of DIDs they can have. There are lots of different implementations of DIDs (called [DID methods](https://www.w3.org/TR/did-core/#methods)) with different use cases. Web5 currently supports a few methods. @@ -64,7 +64,7 @@ did:ion is a very robust, very decentralized platform for anchoring your DIDs. I ### DID Documents -Now that Alice and Bob have gone through one of the methods and they have their DIDs, they now need a DID document to store those DIDs. Lets learn about DID documents, what they are and what fields we might see in them. +Now that Alice and Bob have gone through one of the methods and they have their DIDs, they now need a DID document to store those DIDs. Let's learn about DID documents, what they are and what fields we might see in them. #### What is it? diff --git a/docs/web5/learn/protocols.md b/docs/web5/learn/protocols.md index 33cdfb45a..626220a90 100644 --- a/docs/web5/learn/protocols.md +++ b/docs/web5/learn/protocols.md @@ -32,7 +32,7 @@ Every protocol document has a few basic keys: These terms are combined in a human-readable way to define both the data schema and permissions of your app. -To apply these concepts, lets consider if we wanted to build a basic social networking application. In our social network, we want users to be able to post images with captions that can be replied to, as well as messages with replies. This application has a data design of two key objects: images and messages. Images have caption and reply properties, while messages just have a replies property. +To apply these concepts, let's consider if we wanted to build a basic social networking application. In our social network, we want users to be able to post images with captions that can be replied to, as well as messages with replies. This application has a data design of two key objects: images and messages. Images have caption and reply properties, while messages just have a replies property. Now let’s imagine how we’d construct the permissions for such an app. We want all users to be able to post images and messages, but we have a few constraints on the other properties: