Skip to content

Commit

Permalink
chore: more broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Jan 3, 2024
1 parent e8791e9 commit 3607666
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/migration_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To update, please make sure this field in `Nargo.toml` matches the output of `na

## ≥0.14

The index of the [for loops](noir/syntax/control_flow.md#loops) is now of type `u64` instead of `Field`. An example refactor would be:
The index of the [for loops](noir/concepts/control_flow.md#loops) is now of type `u64` instead of `Field`. An example refactor would be:

```rust
for i in 0..10 {
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/noir/concepts/data_types/function_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ fn main() {
```

A function type also has an optional capture environment - this is necessary to support closures.
See [Lambdas](@site/docs/noir/syntax/lambdas.md) for more details.
See [Lambdas](@site/docs/noir/concepts/lambdas.md) for more details.
2 changes: 1 addition & 1 deletion docs/docs/noir/concepts/data_types/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fn main() {
}
```

Type aliases can also be used with [generics](@site/docs/noir/syntax/generics.md):
Type aliases can also be used with [generics](@site/docs/noir/concepts/generics.md):

```rust
type Id<Size> = Size;
Expand Down

0 comments on commit 3607666

Please sign in to comment.