From 61736584781a173f5b4d3b0342dd2a016f57a6fb Mon Sep 17 00:00:00 2001 From: Jonathan Wang <31040440+jonathanpwang@users.noreply.github.com> Date: Sun, 12 Nov 2023 23:31:55 -0800 Subject: [PATCH] chore: fix comment --- halo2-base/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/halo2-base/src/lib.rs b/halo2-base/src/lib.rs index 049488d6..94f925f9 100644 --- a/halo2-base/src/lib.rs +++ b/halo2-base/src/lib.rs @@ -119,7 +119,7 @@ pub struct ContextCell { } impl ContextCell { - /// Creates a new [ContextCell] with the given `type_name`, `context_id`, and `offset`. + /// Creates a new [ContextCell] with the given `type_id`, `context_id`, and `offset`. pub fn new(type_id: &'static str, context_id: usize, offset: usize) -> Self { Self { type_id, context_id, offset } }