aboutsummaryrefslogtreecommitdiffstats
path: root/yjit
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2023-09-14 18:40:45 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2023-09-14 18:40:45 -0400
commit0ba6c603bca195064c5530009d72dd42ad42d153 (patch)
treed31008e116a1d3b53187825bfca994fb58a47620 /yjit
parent07b615bb3b55d1ab6548d1abf77aa8bc25bbb3e1 (diff)
downloadruby-0ba6c603bca195064c5530009d72dd42ad42d153.tar.gz
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.
Diffstat (limited to 'yjit')
-rw-r--r--yjit/src/codegen.rs2
1 files changed, 1 insertions, 1 deletions
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::*;