Skip to content

Commit

Permalink
chore: update relative paths for docs imports (#3291)
Browse files Browse the repository at this point in the history
  • Loading branch information
critesjosh authored Oct 25, 2023
1 parent ad67a04 commit e12d2da
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
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

0 comments on commit e12d2da

Please sign in to comment.