From 0bf871df951289f973ca936b2e439df0839eed2a Mon Sep 17 00:00:00 2001 From: Brawn Date: Sun, 7 Sep 2025 14:04:04 +0300 Subject: [PATCH] docs: fix comment typo in `PublicOutput` --- book/src/cellvar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/cellvar.md b/book/src/cellvar.md index 9c7b285da..029317450 100644 --- a/book/src/cellvar.md +++ b/book/src/cellvar.md @@ -46,7 +46,7 @@ pub enum Value { External(String, usize), /// A public output. - /// This is tracked separately as public inputs as it needs to be computed later. + /// This is tracked separately as public outputs as it needs to be computed later. PublicOutput(Option), } ```