From 92d76ac4b3978036988a2593d4bae95e5db6097d Mon Sep 17 00:00:00 2001 From: Jason Morton Date: Wed, 28 Dec 2022 09:43:18 -0500 Subject: [PATCH] fix: correct two typos so that docs compile (#85) --- src/graph/node.rs | 2 +- src/graph/vars.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graph/node.rs b/src/graph/node.rs index d8b1f3c6e..0ebade307 100644 --- a/src/graph/node.rs +++ b/src/graph/node.rs @@ -221,7 +221,7 @@ fn display_tensorf32(o: &Option>) -> 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. diff --git a/src/graph/vars.rs b/src/graph/vars.rs index c962d0e5c..785228816 100644 --- a/src/graph/vars.rs +++ b/src/graph/vars.rs @@ -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();