Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update relative paths for docs imports #3291

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/language_concepts/data_types/05_slices.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Explore the Slice data type in Noir. Understand its methods, see re
keywords: [noir, slice type, methods, examples, subarrays]
---

import Experimental from '../../../src/components/Notes/_experimental.mdx';
import Experimental from '@site/src/components/Notes/_experimental.mdx';

<Experimental />

Expand All @@ -21,7 +21,7 @@ fn main() -> pub Field {
}
```

View the corresponding test file [here]([test-file].
View the corresponding test file [here][test-file].

[test-file]: https://github.com/noir-lang/noir/blob/f387ec1475129732f72ba294877efdf6857135ac/crates/nargo_cli/tests/test_data_ssa_refactor/slices/src/main.nr

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/language_concepts/data_types/06_vectors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Delve into the Vector data type in Noir. Learn about its methods, p
keywords: [noir, vector type, methods, examples, dynamic arrays]
---

import Experimental from '../../../src/components/Notes/_experimental.mdx';
import Experimental from '@site/src/components/Notes/_experimental.mdx';

<Experimental />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
[cryptographic primitives, Noir project, sha256, blake2s, pedersen, mimc_bn254, mimc, hash]
---

import BlackBoxInfo from '../../../src/components/Notes/_blackbox.mdx';
import BlackBoxInfo from '@site/src/components/Notes/_blackbox.mdx';

## sha256

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: See how you can perform scalar multiplications over a fixed base in
keywords: [cryptographic primitives, Noir project, scalar multiplication]
---

import BlackBoxInfo from '../../../src/components/Notes/_blackbox.mdx';
import BlackBoxInfo from '@site/src/components/Notes/_blackbox.mdx';

## scalar_mul::fixed_base_embedded_curve

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Learn how you can verify Schnorr signatures using Noir
keywords: [cryptographic primitives, Noir project, schnorr, signatures]
---

import BlackBoxInfo from '../../../src/components/Notes/_blackbox.mdx';
import BlackBoxInfo from '@site/src/components/Notes/_blackbox.mdx';

## schnorr::verify_signature

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Learn about the cryptographic primitives regarding EdDSA
keywords: [cryptographic primitives, Noir project, eddsa, signatures]
---

import BlackBoxInfo from '../../../src/components/Notes/_blackbox.mdx';
import BlackBoxInfo from '@site/src/components/Notes/_blackbox.mdx';

## eddsa::eddsa_poseidon_verify

Expand Down