summaryrefslogtreecommitdiff
path: root/src/eval/machine.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval/machine.rs')
-rw-r--r--src/eval/machine.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/machine.rs b/src/eval/machine.rs
index 904a64c8..9c58c659 100644
--- a/src/eval/machine.rs
+++ b/src/eval/machine.rs
@@ -11,7 +11,7 @@ use crate::Context;
pub struct Machine<'a> {
/// The core context.
pub ctx: &'a mut Context,
- /// The route of source ids at which the machine is located.
+ /// The route of source ids the machine took to reach its current location.
pub route: Vec<SourceId>,
/// The dependencies of the current evaluation process.
pub deps: Vec<(SourceId, usize)>,