From 0ba6c603bca195064c5530009d72dd42ad42d153 Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Thu, 14 Sep 2023 18:40:45 -0400 Subject: [PATCH] YJIT: Remove UTF-8 BOM [ci skip] /yjit/src/backend/x86_64/mod.rs Is also UTF-8 and it doesn't have the marker. The standard recommends against it, so remove it. --- yjit/src/codegen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index 3ae519bc81..dd4944b362 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -1,4 +1,4 @@ -// We use the YARV bytecode constants which have a CRuby-style name +// We use the YARV bytecode constants which have a CRuby-style name #![allow(non_upper_case_globals)] use crate::asm::*;