summaryrefslogtreecommitdiff
path: root/matrix-stdlib/src/lib.rs
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-02-23 16:25:02 -0500
committerFreya Murphy <freya@freyacat.org>2024-02-23 16:25:02 -0500
commit1ebe51c7b39fc158a44879cbe446cb32aec62a5d (patch)
treefe70b455c3dadb4ce81ff35ced7625021dbff336 /matrix-stdlib/src/lib.rs
parentchanges i forgor to commit (diff)
downloadmatrix-1ebe51c7b39fc158a44879cbe446cb32aec62a5d.tar.gz
matrix-1ebe51c7b39fc158a44879cbe446cb32aec62a5d.tar.bz2
matrix-1ebe51c7b39fc158a44879cbe446cb32aec62a5d.zip
matrix math
Diffstat (limited to 'matrix-stdlib/src/lib.rs')
-rw-r--r--matrix-stdlib/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/matrix-stdlib/src/lib.rs b/matrix-stdlib/src/lib.rs
index 312d397..6e0cfc1 100644
--- a/matrix-stdlib/src/lib.rs
+++ b/matrix-stdlib/src/lib.rs
@@ -2,6 +2,6 @@ use matrix::vm::Vm;
mod io;
-pub fn load(compiler: &mut Vm) {
- io::load(compiler);
+pub fn load(vm: &mut Vm) {
+ io::load(vm);
}