Skip to content

Commit ec6d7c6

Browse files
committed
Fix some link paths to reduce MkDocs warnings
1 parent 6a3d511 commit ec6d7c6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/getting-started/welcome-evm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We know security is your top concern. Simplicity is fundamentally architected wi
1313
## Where to go from here:
1414

1515
* **Perform a live transaction:** Try our [quickstart tutorial](../quickstart/) to make your first Simplicity transaction in minutes.
16-
* **Get introduced to Simplicity from the EVM perspective**: Map your knowledge to our environment by reading our dedicated, detailed [Introduction to Simplicity for EVM Developers](../../documentation/simplicity-for-evm-developers), including frequently asked questions and a video presentation on the architectural differences.
16+
* **Get introduced to Simplicity from the EVM perspective**: Map your knowledge to our environment by reading our dedicated, detailed [Introduction to Simplicity for EVM Developers](../documentation/simplicity-for-evm-developers), including frequently asked questions and a video presentation on the architectural differences.
1717
* **See it in action:** Explore what's possible with [Simplicity use cases and demos](../../use-cases/), including how complex financial applications are built natively on-chain.
1818
* **Shift your mental model:** Dive into the [UTXO execution model](../../documentation/execution-model) that structures Simplicity contracts and within which they execute on the blockchain. Understand how Simplicity enforces financial logic and spending conditions without global state or account balances.
1919
* **Master state management:** Learn how to pass data from one transaction to another using [covenants and state management](../../documentation/state), the UTXO equivalent to updating contract storage.

docs/simplicityhl-reference/builtin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Built-in functions
22

3-
[SimplicityHL](../glossary.md#simplicityhl) offers several built-in functions and macros. These are additional to the hundreds of [jets](../../documentation/jets) provided by the Simplicity Elements integration.
3+
[SimplicityHL](../glossary.md#simplicityhl) offers several built-in functions and macros. These are additional to the hundreds of [jets](../../documentation/jets/) provided by the Simplicity Elements integration.
44

55
| <div style="width:8em">Function</div> | Description |
66
|-------------|-----------------------------------|
@@ -9,7 +9,7 @@
99
| `dbg!()` | Do-nothing function used as a debugger marker. |
1010
| `fold()` | Repeatedly apply a function to each element of a list, starting with an initial accumulator value. |
1111
| `for_while()` | Perform a bounded loop by repeatedly calling a function with an incrementing counter variable. Permits an explicit early exit from the loop.<br><br>**Note: can be computationally expensive.** |
12-
| `<T>::into()` | Perform native type conversions. See [type casting](../type_casting) for more details. |
12+
| `<T>::into()` | Perform native type conversions. See [type casting](../type_casting/) for more details. |
1313
| `is_none<T>()` | Check whether an `Option<T>` value is `None`, returning `true` or `false`. |
1414
| `panic!` | Immediately abort the current program, rejecting the currently proposed transaction. |
1515
| `unwrap` | Require that a value of type `Option<T>` is `Some`, extracting the underlying element of type `T`. Panics if the given value is `None` instead. |
@@ -105,7 +105,7 @@ fn not(bit: bool) -> bool {
105105
}
106106
```
107107

108-
See [type casting](../type_casting) for more details.
108+
See [type casting](../type_casting/) for more details.
109109

110110
### `is_none`
111111

0 commit comments

Comments
 (0)