From 03226459d9b3e42fd238605e0282ee00126edc4c Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Thu, 8 Feb 2024 15:17:55 +0100 Subject: [PATCH] circuit: fix comment --- circuit/log2.circom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuit/log2.circom b/circuit/log2.circom index 0442796..3ce6b82 100644 --- a/circuit/log2.circom +++ b/circuit/log2.circom @@ -17,7 +17,7 @@ template Log2(n) { signal output mask[n+1]; // mask will be a vector [1,1,1,...1,0,...,0,0] - // which can change only where inp == 2^out + // which can change only where index == out var log2 = -1; for(var i=0; i<=n; i++) {