mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
Fix some typos in the node graph code (#1970)
This commit is contained in:
committed by
Keavon Chambers
parent
f17f8ddf61
commit
507210b961
@@ -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) {}
|
||||
|
||||
Reference in New Issue
Block a user