diff --git a/plonky2/src/gates/lookup_table.rs b/plonky2/src/gates/lookup_table.rs index f3ed842d..9f9d967e 100644 --- a/plonky2/src/gates/lookup_table.rs +++ b/plonky2/src/gates/lookup_table.rs @@ -81,7 +81,7 @@ impl, const D: usize> Gate for LookupTableGat fn id(&self) -> String { // Custom implementation to not have the entire lookup table format!( - "LookupGate {{num_slots: {}, lut_hash: {:?}, last_lut_row: {}}}", + "LookupTableGate {{num_slots: {}, lut_hash: {:?}, last_lut_row: {}}}", self.num_slots, self.lut_hash, self.last_lut_row ) }