From 17859a87ff6af67a0559c23fae92ba3cc44940b9 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 28 Sep 2018 22:50:31 -0700 Subject: [PATCH] Fix a typo in a comment. --- lib/codegen/src/ir/immediates.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/codegen/src/ir/immediates.rs b/lib/codegen/src/ir/immediates.rs index 3297769ac4..2db7123942 100644 --- a/lib/codegen/src/ir/immediates.rs +++ b/lib/codegen/src/ir/immediates.rs @@ -215,7 +215,7 @@ impl Offset32 { Offset32(x) } - /// Create a new `Offset32` representing the signed numver `x` if possible. + /// Create a new `Offset32` representing the signed number `x` if possible. pub fn try_from_i64(x: i64) -> Option { let casted = x as i32; if casted as i64 == x {