From deda9da6fdfb3b735a927fcb5b17bb21fd4b8df3 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Mon, 12 Feb 2024 11:17:01 +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 3ce6b82..bb5d626 100644 --- a/circuit/log2.circom +++ b/circuit/log2.circom @@ -43,7 +43,7 @@ template Log2(n) { //------------------------------------------------------------------------------ // // given an input `inp`, this template computes `out := k` such that 2^k <= inp < 2^{k+1} -// it also returns the binary decomposition of `inp-1`, and the binary deocmpositiom +// it also returns the binary decomposition of `inp-1`, and the binary decomposition // of the mask `(2^k-1)` // // we also output a mask vector which is 1 for i=0..k-1, and 0 elsewhere