From 182a42becc575abaa96070e4ebc58d8fc491908c Mon Sep 17 00:00:00 2001
From: Shou Ya <shouya@users.noreply.github.com>
Date: Fri, 29 Dec 2023 22:51:36 +0900
Subject: [PATCH] fix typo

---
 fish-rust/src/fallback.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fish-rust/src/fallback.rs b/fish-rust/src/fallback.rs
index 27a6a2f09..d108c1613 100644
--- a/fish-rust/src/fallback.rs
+++ b/fish-rust/src/fallback.rs
@@ -64,7 +64,7 @@ pub fn fish_wcwidth(c: char) -> i32 {
     // Check for Emoji_Modifier property. Only the Fitzpatrick modifiers have this, in range
     // 1F3FB..1F3FF. This is a hack because such an emoji appearing on its own would be drawn as
     // width 2, but that's unlikely to be useful. See #8275.
-    if ('\u{F3FB}'..='\u{1F3FF}').contains(&c) {
+    if ('\u{1F3FB}'..='\u{1F3FF}').contains(&c) {
         return 0;
     }