Skip to content

Commit 1682a13

Browse files
committed
fix compilation errors
1 parent 37dd64c commit 1682a13

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

documentation/concepts/fundamentals/02_records.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ An Aleo record is serialized in the following format:
1818
| Parameter | Type | Description |
1919
|:---------:|:----------------------:|:----------------------------------------------------------------------------------------------------------------------:|
2020
| `owner` | address | The address public key of the owner of the program record |
21-
| `data` | Map<Identifier, Entry> | A data payload containing arbitrary application-dependent information. Each entry can either be `public` or `private`. |
21+
| `data` | Map\<Identifier, Entry\> | A data payload containing arbitrary application-dependent information. Each entry can either be `public` or `private`. |
2222
| `nonce` | group | The serial number nonce of the program record |
2323
An example record:
2424
```bash

documentation/guides/leo/00_leo_testing.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@ To test with the network, developers need to set up a local development network
1616
Here are the steps to start running a local devnet:
1717
1. To run a local devnet with the script, start by installing `tmux`.
1818

19-
<details><summary>macOS</summary>
19+
<details>
20+
<summary>macOS</summary>
2021

2122
To install `tmux` on macOS, you can use the `Homebrew` package manager.
2223
If you haven't installed `Homebrew` yet, you can find instructions at [their website](https://brew.sh/).
2324
```bash
2425
# Once Homebrew is installed, run:
2526
brew install tmux
2627
```
27-
2828
</details>
2929

30-
<details><summary>Ubuntu</summary>
30+
<details>
31+
<summary>Ubuntu</summary>
3132

3233
On Ubuntu and other Debian-based systems, you can use the `apt` package manager:
3334
```bash
@@ -37,7 +38,8 @@ sudo apt install tmux
3738

3839
</details>
3940

40-
<details><summary>Windows</summary>
41+
<details>
42+
<summary>Windows</summary>
4143

4244
There are a couple of ways to use `tmux` on Windows:
4345

documentation/guides/sdk/wasm/01_nodejs.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ sidebar_label: NodeJS + Browser
1111
<dt><a href="#Address">Address</a></dt>
1212
<dd></dd>
1313
<dt><a href="#ExecutionResponse">ExecutionResponse</a></dt>
14-
<dd><p>Webassembly Representation of an Aleo function execution response</p>
14+
<dd>
15+
<p>Webassembly Representation of an Aleo function execution response</p>
1516
<p>This object is returned by the execution of an Aleo function off-chain. It provides methods for
1617
retrieving the outputs of the function execution.</p>
1718
</dd>
@@ -20,26 +21,31 @@ retrieving the outputs of the function execution.</p>
2021
<dt><a href="#PrivateKey">PrivateKey</a></dt>
2122
<dd></dd>
2223
<dt><a href="#PrivateKeyCiphertext">PrivateKeyCiphertext</a></dt>
23-
<dd><p>Private Key in ciphertext form</p>
24+
<dd>
25+
<p>Private Key in ciphertext form</p>
2426
</dd>
2527
<dt><a href="#Program">Program</a></dt>
26-
<dd><p>Webassembly Representation of an Aleo program</p>
28+
<dd>
29+
<p>Webassembly Representation of an Aleo program</p>
2730
<p>This object is required to create an Execution or Deployment transaction. It includes several
2831
convenience methods for enumerating available functions and each functions&#39; inputs in a
2932
javascript object for usage in creation of web forms for input capture.</p>
3033
</dd>
3134
<dt><a href="#ProvingKey">ProvingKey</a></dt>
3235
<dd></dd>
3336
<dt><a href="#RecordCiphertext">RecordCiphertext</a></dt>
34-
<dd><p>Encrypted Aleo record</p>
37+
<dd>
38+
<p>Encrypted Aleo record</p>
3539
</dd>
3640
<dt><a href="#RecordPlaintext">RecordPlaintext</a></dt>
37-
<dd><p>Aleo record plaintext</p>
41+
<dd>
42+
<p>Aleo record plaintext</p>
3843
</dd>
3944
<dt><a href="#Signature">Signature</a></dt>
4045
<dd></dd>
4146
<dt><a href="#Transaction">Transaction</a></dt>
42-
<dd><p>Webassembly Representation of an Aleo transaction</p>
47+
<dd>
48+
<p>Webassembly Representation of an Aleo transaction</p>
4349
<p>This object is created when generating an on-chain function deployment or execution and is the
4450
object that should be submitted to the Aleo Network in order to deploy or execute a function.</p>
4551
</dd>

0 commit comments

Comments
 (0)