Skip to content

Commit 1ef3a85

Browse files
authored
Merge pull request #486 from ProvableHQ/rr-fix-typos
Fixing typos and syntax
2 parents 2aa849e + c648ca1 commit 1ef3a85

File tree

4 files changed

+5
-18
lines changed

4 files changed

+5
-18
lines changed

documentation/getting_started/02_ide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Your Development Environment
44
sidebar_label: Dev Env
55
---
66

7-
Developers can choose from a wide variety of development environment. Each
7+
Developers can choose from a wide variety of development environments.
88

99
## Leo Playground
1010

documentation/getting_started/03_hello.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,11 @@ Let's go through the project.
7171
}
7272
```
7373

74-
The program ID in `program` is the official name that other developers will be able to look up after you have published your program.
74+
The program ID in `program` is the official name that other developers will be able to look up after the program has been deployed to a network.
7575
```json
7676
"program": "hello.aleo",
7777
```
7878

79-
All files in the current package will be compiled with the specified Leo `version`.
80-
81-
```json
82-
"version": "0.0.0",
83-
```
84-
8579
Dependencies will be added to the field of the same name, as they are added. The dependencies are also pegged in the **leo.lock** file.
8680

8781
### The Code

documentation/language/01_layout.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,4 @@ The program ID in `program` is the official name that other developers will be a
2222
"program": "hello.aleo",
2323
```
2424

25-
All files in the current package will be compiled with the specified Leo `version`.
26-
27-
```json
28-
"version": "0.0.0",
29-
```
30-
3125
Dependencies will be added to the field of the same name, as they are added. The dependencies are also pegged in the **leo.lock** file.

documentation/testing/03_devnet.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ A local devnet can be a heavyweight but reliable way to test your application on
88

99
## Setup
1010

11-
To run a local devnet, you'll need to install [snarkOS](https://developer.aleo.org/guides/introduction/getting_started#2-installing-snarkos).
12-
Be sure to use the latest [release](https://github.com/ProvableHQ/snarkOS/releases).
13-
You'll also need `tmux` (instructions below) and the [devnet.sh](https://github.com/ProvableHQ/snarkOS/blob/staging/devnet.sh) script in the `snarkOS` repository.
11+
To run a local devnet using snarkOS, you'll need to install the latest [snarkOS release](https://github.com/ProvableHQ/snarkOS/releases).
12+
You'll also need `tmux` (instructions below) and the [devnet.sh](https://github.com/ProvableHQ/snarkOS/blob/staging/devnet.sh) script from the [snarkOS repository](https://github.com/ProvableHQ/snarkOS).
1413

1514
<details><summary>macOS</summary>
1615

@@ -126,7 +125,7 @@ You can use the SnarkOS CLI to view your Records using the following command syn
126125
snarkos developer scan --endpoint http://localhost:3030 --private-key APrivateKey1zkp8CZNn3yeCseEtxuVPbDCwSyhGW6yZKUYKfgXmcpoGPWH --start <block_number> --network 1
127126
```
128127
129-
Setting `block_number` to `0` will list all of the records from genesis, including your test credit records.
128+
Setting `block_number` to `0` will list all of the records created starting from the genesis block, including your test credit records.
130129
131130
```bash
132131
⚠️ Attention - Scanning the entire chain. This may take a while...

0 commit comments

Comments
 (0)