Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Add minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gianalarcon committed Mar 21, 2024
1 parent 9d20d03 commit f059523
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ch00-00-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ These are some key features of Starknet:
- Speed and Efficiency: Upcoming releases aim to make transactions
even faster and cheaper.

- CVM: Thanks to Cairo, Starknet runs on it´s own VM, called Cairo VM
- CVM: Thanks to Cairo, Starknet runs on it's own VM, called Cairo VM
(CVM), that allow us to innovate beyond the Ethereum Virtual Machine
(EVM) and create a new paradigm for decentralized applications.

Expand Down
2 changes: 1 addition & 1 deletion src/ch02-02-starkli-scarb-katana.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ mod hello {
}

#[abi(embed_v0)]
impl HelloImpl of super::IHello<ContractState> {
impl HelloImpl of super::IHello<ContractState> {
fn get_name(self: @ContractState) -> felt252 {
self.name.read()
}
Expand Down
2 changes: 1 addition & 1 deletion src/ch02-05-testnet-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ new one. In this tutorial, we’ll use the private key option which is the
most common use case. You need to provide the path to the keystore file
you want to create. You can give any name to the keystore file, you will
likely have several wallets. In this tutorial, we will use the name
`my_keystore_ 1.json`.
`my_keystore_1.json`.

```bash
starkli signer keystore from-key ~/.starkli-wallets/deployer/my_keystore_1.json
Expand Down
2 changes: 1 addition & 1 deletion src/ch05-02-03-cryptographic-primitives.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ and if elliptic curves break or when quantum computers come around
2017](https://vitalik.ca/general/2017/11/09/starks_part_1.html)).

"With the T standing for "transparent", ZK-STARKs resolve one of the
primary weaknesses of ZK-SNARKs, its reliance on a 'trusted setup´."
primary weaknesses of ZK-SNARKs, its reliance on a `trusted setup`."
[(Vitalik 2017)](https://vitalik.ca/general/2017/11/09/starks_part_1.html).

# Commitment Schemes
Expand Down

0 comments on commit f059523

Please sign in to comment.