Skip to content

Commit dbc9bec

Browse files
authored
docs typos cleanup (#1456)
1 parent 3ef307d commit dbc9bec

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

components/Starknet/modules/architecture-and-concepts/pages/accounts/account-functions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ That is, this function runs at most once throughout the lifecycle of the account
4040
When the sequencer receives a transaction, it calls the corresponding validation function with the appropriate input from the transaction's data, as follows:
4141

4242
* For an `INVOKE` transaction, the sequencer calls the `+__validate__+` function with the transaction's calldata as input. The transaction's calldata will be deserialized to the arguments in the `+__validate__+` function's signature, it is up to the sender to make sure that the calldata is encoded appropriately according to validate's signature. After successfully completing validation, the sequencer calls the `+__execute__+` function with the same arguments.
43-
* For a `DEPLOY_ACCOUNT` transaction, the sequencer calls the `constructor` function with the transaction's `constructor_calldata` as input (as above, it is expected that the constructor's calldata successfully desieralizes to the arguments in the constructor signature). After the successful execution of the constructor, the sequencer validates the transaction by calling the `+__validate_deploy__+` function.
43+
* For a `DEPLOY_ACCOUNT` transaction, the sequencer calls the `constructor` function with the transaction's `constructor_calldata` as input (as above, it is expected that the constructor's calldata successfully deserializes to the arguments in the constructor signature). After the successful execution of the constructor, the sequencer validates the transaction by calling the `+__validate_deploy__+` function.
4444
* For a `DECLARE` transaction, the sequencer validates the transaction by calling the `+__validate_declare__+` function.
4545

4646
* For more information on the available transaction types and their fields, see xref:architecture-and-concepts:network-architecture/transactions.adoc[Transaction types].

components/Starknet/modules/architecture-and-concepts/pages/network-architecture/block-structure.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Where:
112112
The commitment to transactions, the commitment to events and the commitment to receipts are all roots of height-64 binary Merkle Patricia tries where the leaf at index `i` corresponds to:
113113

114114
* For transactions: `h(transaction_hash, signature)` for the ``i``'th transaction included in the block, where `h` is the xref:../../cryptography/hash-functions.adoc#poseidon-hash[Poseidon hash function]
115-
* For events: The xref:#event_hash[event hash] of the ``i``'th emitted evet included in the block
115+
* For events: The xref:#event_hash[event hash] of the ``i``'th emitted event included in the block
116116
* For receipts: The xref:#receipt_hash[receipt hash] of the ``i``'th transaction receipt included in the block
117117

118118
[#event_hash]

components/Starknet/modules/architecture-and-concepts/pages/network-architecture/os.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ Finally, the Starknet Core contract is also responsible for verifying the few th
8080
== Implementations
8181

8282
The Cairo code of SNOS is available in the https://github.com/starkware-libs/cairo-lang/tree/8e11b8cc65ae1d0959328b1b4a40b92df8b58595/src/starkware/starknet/core/os[cairo-lang GitHub repository^].
83-
However, this repository does not include all the hints implementiation, which are necessary to locally run SNOS. The current implementation of these hints in Python is now deprecated, and will no longer be maintained in future Starknet versions.
83+
However, this repository does not include all the hints implementation, which are necessary to locally run SNOS. The current implementation of these hints in Python is now deprecated, and will no longer be maintained in future Starknet versions.
8484

8585
[IMPORTANT]
8686
====
87-
As part of the transition of Starknet's infrastructure to Rust, SNOS's Pythonic hints implementiation is deprecated, and will no longer be maintained in future Starknet versions.
87+
As part of the transition of Starknet's infrastructure to Rust, SNOS's Pythonic hints implementation is deprecated, and will no longer be maintained in future Starknet versions.
8888
====
8989

9090
Instead, a new Rust implementation of the hints, including initializing all inputs of SNOS via a Starknet full node connection, is available in the https://github.com/keep-starknet-strange/snos/tree/cb2a6d26faeb658492756fe100bbdf5b1600c768[SNOS GitHub repository^]. At the time of writing, this codebase supports the execution of SNOS for Starknet version 0.13.2.

components/Starknet/modules/quick-start/pages/environment-setup.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ curl https://get.starkli.sh | sh
3636
starkliup
3737
----
3838

39-
. Restart the terminal and verify that Starkli is installated correctly:
39+
. Restart the terminal and verify that Starkli is installed correctly:
4040
+
4141
[source,shell]
4242
----
@@ -56,7 +56,7 @@ Starknet Foundry's installation on Windows requires manually setting up shell co
5656
cargo install --locked --git https://github.com/xJonathanLEI/starkli
5757
----
5858

59-
. Restart the terminal and verify that Starkli is installated correctly:
59+
. Restart the terminal and verify that Starkli is installed correctly:
6060
+
6161
[source,shell]
6262
----

components/Starknet/modules/quick-start/pages/set-up-an-account.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ The estimated account deployment fee is 0.000011483579723913 ETH. However, to av
171171
0.000017225369585869 ETH
172172
to the following address:
173173
0x01cf4d57ba01109f018dec3ea079a38fc08b789e03de4df937ddb9e8a0ff853a
174-
Press [ENTER] once youve funded the address.
174+
Press [ENTER] once you've funded the address.
175175
----
176176

177177
You have now successfully deployed a new account to Starknet.

components/Starknet/modules/quick-start/pages/using_devnet.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ and create the corresponding keystore file by executing:
7373
starkli signer keystore from-key ~/.starkli-wallets/devnet/keystore.json
7474
----
7575
+
76-
and entring `0xb137668388dbe9acdfa3bc734cc2c469` as private key (the same one as the one printed out by Devnet)
76+
and entering `0xb137668388dbe9acdfa3bc734cc2c469` as private key (the same one as the one printed out by Devnet)
7777
. Now that you have an account set up, you can use Starkli to freely interact with Devnet. For example, you can redeploy Devnet's predeployed universal deployer using the following command:
7878

7979
[source,bash]

components/Starknet/modules/staking/pages/overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,5 @@ Sepolia:: 0x03745ab04a431fc02871a139be6b93d9260b0ff3e779ad9c8b377183b23109f1
148148

149149
[NOTE]
150150
====
151-
For developers who wish to dive deep, the index update interval parameter is set to a minimum of 1 minute in Starkent Sepolia and 30 minutes in Starknet mainnet.
151+
For developers who wish to dive deep, the index update interval parameter is set to a minimum of 1 minute in Starknet Sepolia and 30 minutes in Starknet mainnet.
152152
====

components/Starknet/modules/starknet-versions/pages/juno-versions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ This minor release introduces an important optimization that enhances sync perfo
257257

258258
== https://github.com/NethermindEth/juno/releases/tag/v0.2.0[v0.2.0]
259259

260-
This release adds support for Staknet `v0.11.0`.
260+
This release adds support for Starknet `v0.11.0`.
261261

262262
WARNING: This release has breaking changes and database is not compatible with the previous version.
263263

components/Starknet/modules/tools/pages/devtools/security.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Sierra-Analyzer is a security toolkit for analyzing Sierra files, developed by link:https://x.com/fuzzinglabs[FuzzingLabs].
88

9-
Supported featrued include:
9+
Supported features include:
1010

1111
* Decompile a Sierra file
1212
* Print the contracts Control Flow Graph

contributing_to_docs/doc_guidelines.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ root@17617744386d:/app# ./player.py
533533
** link:https://docs.asciidoctor.org/asciidoc/latest/verbatim/source-blocks/[Source Code Blocks]
534534
** link:https://docs.asciidoctor.org/asciidoc/latest/subs/[Substitutions]
535535
+
536-
[CAUTIONI]
536+
[CAUTION]
537537
====
538538
It can take some trial and error to figure out the correct source block macro to use for the exact markup you want to use.
539539
====

0 commit comments

Comments
 (0)