remove underscores

This commit is contained in:
collin 2020-08-18 23:05:42 -07:00
parent b00edea686
commit ad4a6cea4f
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
// The 'hello_world' main function.
// The 'hello-world' main function.
function main(a: u32, b: u32) -> u32 {
let c: u32 = a + b;
return c

View File

@ -17,7 +17,7 @@ circuit PedersenHash {
}
}
// The 'pedersen_hash' main function.
// The 'pedersen-hash' main function.
function main() -> group {
const parameters = [1group; 256];
const pedersen = PedersenHash::new(parameters);

View File

@ -1,4 +1,4 @@
// The 'square_root' main function.
// The 'square-root' main function.
// prove knowledge of the square root `a` of a number `b`
function main(a: u32, b: u32) -> bool {
return a * a == b