Fix some typos in the node graph code (#1970)

This commit is contained in:
Bruce Mitchener 2024-09-11 16:35:31 +07:00 committed by Keavon Chambers
parent f17f8ddf61
commit 507210b961
5 changed files with 8 additions and 8 deletions

View file

@ -52,7 +52,7 @@ pub use types::Cow;
/// See `node-graph/README.md` for information on how to define a new node.
pub trait Node<'i, Input: 'i>: 'i {
type Output: 'i;
/// Evalutes the node with the single specified input.
/// Evaluates the node with the single specified input.
fn eval(&'i self, input: Input) -> Self::Output;
/// Resets the node, e.g. the LetNode's cache is set to None.
fn reset(&self) {}