diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/meta/mod.nr b/noir-projects/noir-protocol-circuits/crates/types/src/meta/mod.nr index 5bab589acdc..cca5c2a54be 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/meta/mod.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/meta/mod.nr @@ -423,7 +423,7 @@ pub comptime fn generate_serialize_to_fields( } /// From a quote that gets tokenized to a multiple tokens we collapse it to a single token by replacing all `.` with `_`. -/// E.g. "self.value" -> "self_value" +/// E.g. "self.values[0]" -> "self_values_0" comptime fn collapse_to_one_token(q: Quoted) -> Quoted { let tokens = q.tokens();