diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-09 22:49:32 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-09 22:49:32 +0100 |
| commit | 68ce788d00fe0b8353b7e6aee5ce8dfae564ea5a (patch) | |
| tree | 107cfc607347bfdc6d29aff6e1c445077f9709e7 /lib/xixanta/src/object.rs | |
| parent | ec0831e82851862a6af2ade12a996634d5dfc64e (diff) | |
| download | tools.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.rs | 2 |
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)), } } |
