Skip to content

Commit 8e6178e

Browse files
committed
unify format
1 parent 1c65711 commit 8e6178e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/lib/provable/gadgets/runtime-table.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/**
2-
* This module defines the `RuntimeTable` class, which represents a runtime table used in zk-SNARKs.
2+
* This module defines the `RuntimeTable` class, which represents a provable table whose entries
3+
* can be defined at runtime within the SNARK circuit. It allows inserting key-value pairs and
4+
* checking for their existence.
35
*/
46

57
import { assert } from '../../util/assert.js';
@@ -184,4 +186,4 @@ class RuntimeTable {
184186
this.pairs = [];
185187
}
186188
}
187-
}
189+
}

src/lib/provable/test/lookup.unit-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ let uint = (n: number | bigint): Spec<bigint, Field> => {
100100
return await RuntimeTable.verify(proof);
101101
}
102102
);
103-
}
103+
}

0 commit comments

Comments
 (0)