summaryrefslogtreecommitdiff
path: root/src/eval/machine.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-06-13 23:16:40 +0200
committerLaurenz <laurmaedje@gmail.com>2022-06-14 13:53:02 +0200
commitc81e2a5f56eb262663f292578c683fba7f18251f (patch)
tree6c045a8dcbec5e75e01a15f970ef8cee6ff042d0 /src/eval/machine.rs
parent891af17260a6750a74a102388a05e59cf1ffc3c1 (diff)
Many fixes
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)>,