From 24df00c661f730b2d3f20b946eec89b69d848f16 Mon Sep 17 00:00:00 2001 From: Bohdan Ohorodnii <35969035+varex83@users.noreply.github.com> Date: Tue, 11 Mar 2025 11:22:12 +0000 Subject: [PATCH] fix: update link --- docs/docs/aztec/concepts/advanced/storage/partial_notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/aztec/concepts/advanced/storage/partial_notes.md b/docs/docs/aztec/concepts/advanced/storage/partial_notes.md index 357a0033e9b6..99fc6bef5ddb 100644 --- a/docs/docs/aztec/concepts/advanced/storage/partial_notes.md +++ b/docs/docs/aztec/concepts/advanced/storage/partial_notes.md @@ -139,7 +139,7 @@ This is implemented by applying the `partial_note` attribute: #include_code UintNote noir-projects/aztec-nr/uint-note/src/uint_note.nr rust -Those `G_x` are generators that generated [here](https://github.com/AztecProtocol/aztec-packages/blob/#include_aztec_version/noir-projects/noir-projects/aztec-nr/aztec/src/generators.nr). Anyone can use them for separating different fields in a "partial note". +Those `G_x` are generators that are generated [here](https://github.com/AztecProtocol/aztec-packages/blob/#include_aztec_version/noir/noir-repo/compiler/noirc_frontend/src/hir/comptime/interpreter/builtin.rs) (at the bottom of the file). Anyone can use them for separating different fields in a "partial note". We can see the complete implementation of creating and completing partial notes in an Aztec contract in the `setup_refund` and `complete_refund` functions.