Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/stark/src/machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ impl<SC: StarkGenericConfig, A: MachineAir<Val<SC>> + Air<SymbolicAirBuilder<Val
/// The setup preprocessing phase.
///
/// Given a program, this function generates the proving and verifying keys. The keys correspond
/// to the program code and other preprocessed colunms such as lookup tables.
/// to the program code and other preprocessed columns such as lookup tables.
#[instrument("setup machine", level = "debug", skip_all)]
#[allow(clippy::map_unwrap_or)]
#[allow(clippy::redundant_closure_for_method_calls)]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/dev/guest-program.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Note that type `T` must implement both `serde::Serialize` and `serde::Deserializ
Ziren also provides Go runtime libraries for guest programs to handle input/output operations and exit operation:
- `zkm_runtime.Read[T any]` (for reading structured data)
- `zkm_runtime.Commit[T any]` (for committing structured data)
- `zkm_runtime.RuntimeExit` (for exitting program)
- `zkm_runtime.RuntimeExit` (for exiting program)

## Guest Program Example

Expand Down