Skip to content

Commit

Permalink
fix: correct two typos so that docs compile (zkonduit#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmorton authored Dec 28, 2022
1 parent 4d87b66 commit 92d76ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/graph/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ fn display_tensorf32(o: &Option<Tensor<f32>>) -> String {
}
}

/// A single operation in an [OnnxModel].
/// A single operation in a Model.
/// # Arguments:
/// * `opkind` - [OpKind] enum, i.e what operation this node represents.
/// * `output_max` - The inferred maximum value that can appear in the output tensor given previous quantization choices.
Expand Down
2 changes: 1 addition & 1 deletion src/graph/vars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl std::fmt::Display for VarVisibility {

impl VarVisibility {
/// Read from cli args whether the model input, model parameters, and model output are Public or Private to the prover.
/// Place in [VarVIsibility] struct.
/// Place in [VarVisibility] struct.
pub fn from_args() -> Self {
let args = Cli::parse();

Expand Down

0 comments on commit 92d76ac

Please sign in to comment.