From e7d254e0ef182dff91ce4a09251deec4a986a18f Mon Sep 17 00:00:00 2001 From: shandongzhejiang Date: Wed, 25 Jun 2025 15:14:21 +0800 Subject: [PATCH] chore: remove redundant words in comment Signed-off-by: shandongzhejiang --- .../nextra/pages/en/build/cli/trying-things-on-chain/ledger.mdx | 2 +- apps/nextra/pages/en/build/sdks/dotnet-sdk/accounts/ed25519.mdx | 2 +- apps/nextra/pages/en/build/smart-contracts/book/variables.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/nextra/pages/en/build/cli/trying-things-on-chain/ledger.mdx b/apps/nextra/pages/en/build/cli/trying-things-on-chain/ledger.mdx index 172e4a063..06b0a8a9a 100644 --- a/apps/nextra/pages/en/build/cli/trying-things-on-chain/ledger.mdx +++ b/apps/nextra/pages/en/build/cli/trying-things-on-chain/ledger.mdx @@ -514,7 +514,7 @@ aptos config rename-profile \ ### Rotate back to Ledger Once you've signed the large package publication transaction with the hot key, -you can then rotate the authentication key back to to the corresponding to the +you can then rotate the authentication key back to the corresponding to the private key on the Ledger at index 1000: ```sh filename="Terminal" diff --git a/apps/nextra/pages/en/build/sdks/dotnet-sdk/accounts/ed25519.mdx b/apps/nextra/pages/en/build/sdks/dotnet-sdk/accounts/ed25519.mdx index 387716ce3..ad83bdf43 100644 --- a/apps/nextra/pages/en/build/sdks/dotnet-sdk/accounts/ed25519.mdx +++ b/apps/nextra/pages/en/build/sdks/dotnet-sdk/accounts/ed25519.mdx @@ -23,7 +23,7 @@ Ed25519Accounts are created to sign transactions and interact with the blockchai ### Using a Private Key -To generate an account from a private key, you will need to create the `Ed25519PrivateKey` object and pass into into the +To generate an account from a private key, you will need to create the `Ed25519PrivateKey` object and pass into the `Ed25519Account` constructor. The private key can be given a `string` or `byte[]` representation. ```csharp diff --git a/apps/nextra/pages/en/build/smart-contracts/book/variables.mdx b/apps/nextra/pages/en/build/smart-contracts/book/variables.mdx index 22f9d5bbd..28e4bb0b7 100644 --- a/apps/nextra/pages/en/build/smart-contracts/book/variables.mdx +++ b/apps/nextra/pages/en/build/smart-contracts/book/variables.mdx @@ -635,7 +635,7 @@ Currently these are only applicable to numeric values. | `*=` | Performs multiplication and updates the left-hand value | | `%=` | Performs modular division and updates the left-hand value | | `/=` | Performs truncating division and updates the left-hand value | -| `&=` | Performs bitwise and and updates the left-hand value | +| `&=` | Performs bitwise and updates the left-hand value | | `\|=` | Performs bitwise or and updates the left-hand value | | `^=` | Performs bitwise xor and updates the left-hand value | | `<<=` | Performs shift left and updates the left-hand value |