From 5877884877f3b0069146586d5f102e35cf95ddec Mon Sep 17 00:00:00 2001 From: Jeff Date: Fri, 29 Sep 2023 07:57:17 -0400 Subject: [PATCH] Fix test --- src/interface.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.rs b/src/interface.rs index 4ff87c4..d3006d8 100644 --- a/src/interface.rs +++ b/src/interface.rs @@ -34,7 +34,7 @@ pub fn eval(source: &str) -> Vec> { /// context.set_value("two".into(), 2.into()).unwrap(); // Do proper error handling here /// context.set_value("three".into(), 3.into()).unwrap(); // Do proper error handling here /// -/// let dust_code = "four = 4; one + two + three + four;"; +/// let dust_code = "four = 4; one + two + three + four"; /// /// assert_eq!( /// eval_with_context(dust_code, &mut context),