mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 05:18:19 +00:00
Fix some typos in the node graph code (#1970)
This commit is contained in:
parent
f17f8ddf61
commit
507210b961
5 changed files with 8 additions and 8 deletions
|
@ -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) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue