From c79f6dd5a0769aa753bf04442cf70e1af98f0962 Mon Sep 17 00:00:00 2001 From: Frank Steffahn Date: Sun, 22 Aug 2021 18:07:01 +0200 Subject: [PATCH] =?utf8?q?Fix=20a=20typo=20=E2=80=9Can=E2=80=9D=E2=86=92?= =?utf8?q?=E2=80=9Ca=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/helpers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.rs b/src/helpers.rs index e09ef2865fb..1b683169023 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -78,7 +78,7 @@ fn eval_windows(&mut self, module: &str, name: &str) -> InterpResult<'tcx, Scala self.eval_context_mut().eval_path_scalar(&["std", "sys", "windows", module, name]) } - /// Helper function to get a `windows` constant as an `u64`. + /// Helper function to get a `windows` constant as a `u64`. fn eval_windows_u64(&mut self, module: &str, name: &str) -> InterpResult<'tcx, u64> { // TODO: Cache the result. self.eval_windows(module, name)?.to_u64() -- 2.44.0