Skip to content

Commit 71a1b1c

Browse files
committed
More fully qualified syntax
1 parent ecd784a commit 71a1b1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/matrices_and_arrays.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ pub mod matrix_functions {
401401
.map_err(|err| {
402402
EvalAltResult::ErrorArithmetic(
403403
format!("Data cannot be cast to FLOAT: {err}"),
404-
Position::NONE,
404+
rhai::Position::NONE,
405405
)
406406
})?
407407
.f64()
@@ -447,7 +447,7 @@ pub mod matrix_functions {
447447
"The string {file_path_as_str} is not a valid URL or file path",
448448
)
449449
.into(),
450-
Position::NONE,
450+
rhai::Position::NONE,
451451
)
452452
.into()
453453
}

0 commit comments

Comments
 (0)