Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 73df6ec

Browse files
authored
chore: fix some minor issues in the comments (#1018)
Signed-off-by: bytetigers <bytetiger@icloud.com>
1 parent a8468b9 commit 73df6ec

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

apps/nextra/pages/en/build/guides/aptos-keyless/integration-guide.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ At a high level, there are three steps to follow in order to integrate Keyless A
2222
2. Instantiate the user’s `KeylessAccount`
2323
3. Sign and submit transactions via the `KeylessAccount`.
2424

25-
## Example Implementaion
25+
## Example Implementation
2626

2727
You can find an example app demonstrating basic Keyless integration with Google in the [aptos-keyless-example repository](https://github.com/aptos-labs/aptos-keyless-example/). Follow the directions in the README to start with the example. For more detailed instructions on keyless, please read the rest of this integration guide.
2828

@@ -31,7 +31,7 @@ You can find an example app demonstrating basic Keyless integration with Google
3131

3232
The first step is to setup the configuration with your IdP(s).
3333

34-
[Follow the intructions here](oidc-support.mdx)
34+
[Follow the instructions here](oidc-support.mdx)
3535

3636
### Step 2. Install the Aptos TypeScript SDK
3737

apps/nextra/pages/en/build/sdks/ts-sdk/account/account-abstraction.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ console.log("Coin transfer transaction submitted! ", pendingCoinTransferTransact
268268
### 7. Conclusion
269269

270270
To verify that you have successfully sign and submitted the transaction using the abstracted account, you can use the explorer to check the transaction. If the
271-
transaction signature contains a `function_info` and `auth_data` field, it means you succesfully used account abstraction! The full E2E demo can be found [here](https://github.com/aptos-labs/aptos-ts-sdk/blob/main/examples/typescript/public_key_authenticator_account_abstraction.ts).
271+
transaction signature contains a `function_info` and `auth_data` field, it means you successfully used account abstraction! The full E2E demo can be found [here](https://github.com/aptos-labs/aptos-ts-sdk/blob/main/examples/typescript/public_key_authenticator_account_abstraction.ts).
272272

273273
![Transaction Signature](https://i.imgur.com/HZylFnc.png)
274274

@@ -618,7 +618,7 @@ console.log("Coin transfer transaction submitted! ", pendingCoinTransferTransact
618618
### 8. Conclusion
619619

620620
To verify that you have successfully sign and submitted the transaction using the abstracted account, you can use the explorer to check the transaction. If the
621-
transaction signature contains a `function_info` and `auth_data` field, it means you succesfully used account abstraction! The full E2E demo can be found [here](https://github.com/aptos-labs/aptos-ts-sdk/blob/main/examples/typescript/public_key_authenticator_account_abstraction.ts)
621+
transaction signature contains a `function_info` and `auth_data` field, it means you successfully used account abstraction! The full E2E demo can be found [here](https://github.com/aptos-labs/aptos-ts-sdk/blob/main/examples/typescript/public_key_authenticator_account_abstraction.ts)
622622

623623
![Transaction Signature](https://i.imgur.com/3U40YSb.png)
624624

apps/nextra/pages/en/build/smart-contracts/maps.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ Because it's layout affects what can be inserted and performance, there are a fe
175175

176176
The Smart Table is a scalable hash table implementation based on linear hashing.
177177
This data structure aims to optimize storage and performance by utilizing linear hashing, which splits one bucket at a time instead of doubling the number of buckets, thus avoiding unexpected gas costs.
178-
Unfortunatelly, it's implementation makes every addition/removal be a conflict, making such transactions fully sequential.
179-
The Smart Table uses the SipHash function for faster hash computations while tolerating collisions. Unfortunatelly, this also means that collisions are predictable, which means that if end users can control the keys being inserted, it can have large number of collisions in a single bucket.
178+
Unfortunately, it's implementation makes every addition/removal be a conflict, making such transactions fully sequential.
179+
The Smart Table uses the SipHash function for faster hash computations while tolerating collisions. Unfortunately, this also means that collisions are predictable, which means that if end users can control the keys being inserted, it can have large number of collisions in a single bucket.
180180

181181
### SmartTable Structure
182182

0 commit comments

Comments
 (0)