From f0595235e30b09d326cd1211b01ca7cfe0b5b068 Mon Sep 17 00:00:00 2001 From: gianalarcon Date: Thu, 21 Mar 2024 15:38:03 +0800 Subject: [PATCH] Add minor changes --- src/ch00-00-introduction.md | 2 +- src/ch02-02-starkli-scarb-katana.md | 2 +- src/ch02-05-testnet-deployment.md | 2 +- src/ch05-02-03-cryptographic-primitives.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ch00-00-introduction.md b/src/ch00-00-introduction.md index 73252e423..b313dc9e7 100644 --- a/src/ch00-00-introduction.md +++ b/src/ch00-00-introduction.md @@ -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. diff --git a/src/ch02-02-starkli-scarb-katana.md b/src/ch02-02-starkli-scarb-katana.md index 3e9aac649..e7bbfe2c7 100644 --- a/src/ch02-02-starkli-scarb-katana.md +++ b/src/ch02-02-starkli-scarb-katana.md @@ -97,7 +97,7 @@ mod hello { } #[abi(embed_v0)] - impl HelloImpl of super::IHello { + impl HelloImpl of super::IHello { fn get_name(self: @ContractState) -> felt252 { self.name.read() } diff --git a/src/ch02-05-testnet-deployment.md b/src/ch02-05-testnet-deployment.md index f1dcaad8f..d62712af3 100644 --- a/src/ch02-05-testnet-deployment.md +++ b/src/ch02-05-testnet-deployment.md @@ -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 diff --git a/src/ch05-02-03-cryptographic-primitives.md b/src/ch05-02-03-cryptographic-primitives.md index 5a3b83ff3..d37a0649f 100644 --- a/src/ch05-02-03-cryptographic-primitives.md +++ b/src/ch05-02-03-cryptographic-primitives.md @@ -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