Skip to content

Commit 891ad3e

Browse files
tn0vakjribbink
andauthored
Fix typos in documentation and comments (#2700)
* Fix typos in documentation and comments * Update packages/protobuf/src/proto/flow/executiondata/executiondata.proto --------- Co-authored-by: Jordan Ribbink <17958158+jribbink@users.noreply.github.com>
1 parent 9c5bed0 commit 891ad3e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/fcl-core/src/current-user/exec-service/plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export const initServiceRegistry = ({
188188
export const getServiceRegistry = () => {
189189
if (!getIsServiceRegistryInitialized()) {
190190
console.warn(
191-
"Registry is not initalized, it will be initialized with stub core strategies"
191+
"Registry is not initialized, it will be initialized with stub core strategies"
192192
)
193193

194194
return initServiceRegistry({coreStrategies: stubCoreStrategies})

packages/fcl-core/src/wallet-provider-spec/custodial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ FCL will always publicly try to fetch these fields when asked for a users inform
6262
- **`color`** -- A 6 character hex color, could be used by the dapp for personalization
6363
- **`bio`** -- A small amount of text that a user can use to express themselves
6464

65-
If we can give dapp developers a solid foundation of usable information that is in the direct control of the users from the very start, which we belive the above fields would do, our hopes are they can rely more on the chain and will need to store less in their own database.
65+
If we can give dapp developers a solid foundation of usable information that is in the direct control of the users from the very start, which we believe the above fields would do, our hopes are they can rely more on the chain and will need to store less in their own database.
6666

6767
Private data on the other hand has more use cases than general data. It is pretty easy to imagine ordering something and needing information like contact details and where to ship something.
6868

69-
Eventually we would love to see that sort of thing handled completely on-chain, securely, privately and safely, but in the interm it probably means storing a copy of data in a database when its needed, and allowed by a user.
69+
Eventually we would love to see that sort of thing handled completely on-chain, securely, privately and safely, but in the interim it probably means storing a copy of data in a database when its needed, and allowed by a user.
7070

7171
The process of a dapp receiving private data is as follows:
7272

@@ -259,14 +259,14 @@ Below is the public authorization hook we received during the challenge above.
259259
}
260260
```
261261

262-
FCL will take that hook and do the following post requeset:
262+
FCL will take that hook and do the following post request:
263263

264264
```
265265
POST https://provider.com/flow/authorize
266266
?id=2345432
267267
---
268268
{
269-
message: "...", // what needs to be signed (needs to be convered from hex to binary before signing)
269+
message: "...", // what needs to be signed (needs to be converted from hex to binary before signing)
270270
addr: "0xab4U9KMf", // the flow address that needs to sign
271271
keyId: 3, // the flow account keyId for the private key that needs to sign
272272
roles: {

packages/transport-grpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ npm install --save @onflow/transport-grpc
1919

2020
### Integration with FCL
2121

22-
By default `@onflow/fcl` defaults to using the HTTP Access Node endpoint via the [HTTP Transport](/packages/transport-http/) package (`@onflow/transport-http`). This may be overriden, however.
22+
By default `@onflow/fcl` defaults to using the HTTP Access Node endpoint via the [HTTP Transport](/packages/transport-http/) package (`@onflow/transport-http`). This may be overridden, however.
2323

2424
If using the gRPC Access API, the `sdk.transport` configuration key must be populated as this value defaults to the HTTP API transport. The SDK can be configured to use the gRPC API transport as follows:
2525

0 commit comments

Comments
 (0)