aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/src/object.rs
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-01-09 22:49:32 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-01-09 22:49:32 +0100
commit68ce788d00fe0b8353b7e6aee5ce8dfae564ea5a (patch)
tree107cfc607347bfdc6d29aff6e1c445077f9709e7 /lib/xixanta/src/object.rs
parentec0831e82851862a6af2ade12a996634d5dfc64e (diff)
downloadtools.nes-68ce788d00fe0b8353b7e6aee5ce8dfae564ea5a.tar.gz
tools.nes-68ce788d00fe0b8353b7e6aee5ce8dfae564ea5a.zip
Improve error message on unknown variable/scope
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/src/object.rs')
-rw-r--r--lib/xixanta/src/object.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xixanta/src/object.rs b/lib/xixanta/src/object.rs
index 77ab8a6..ad02747 100644
--- a/lib/xixanta/src/object.rs
+++ b/lib/xixanta/src/object.rs
@@ -232,7 +232,7 @@ impl Context {
}
}
},
- None => Err(format!("did not find scope '{}'", scope_name)),
+ None => Err(format!("could not find scope '{}'", scope_name)),
}
}