From 1ebe51c7b39fc158a44879cbe446cb32aec62a5d Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 23 Feb 2024 16:25:02 -0500 Subject: matrix math --- matrix-stdlib/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'matrix-stdlib/src') 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); } -- cgit v1.2.3-freya