]> git.lizzy.rs Git - rust.git/commitdiff
Fix a typo “an”→“a”
authorFrank Steffahn <frank.steffahn@stu.uni-kiel.de>
Sun, 22 Aug 2021 16:07:01 +0000 (18:07 +0200)
committerFrank Steffahn <frank.steffahn@stu.uni-kiel.de>
Sun, 22 Aug 2021 16:07:01 +0000 (18:07 +0200)
src/helpers.rs

index e09ef2865fb2b2b1e0c57ebb9758e6cf4c9f361a..1b683169023563000f19f35b41dbb00446e83449 100644 (file)
@@ -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()