Skip to content

Commit 15eb40d

Browse files
committed
Remove trailing spaces [ci skip]
1 parent 73818b8 commit 15eb40d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
* Fix `JSON.generate` `strict: true` mode to also restrict hash keys.
6767
* Fix `JSON::Coder` to also invoke block for hash keys that aren't strings nor symbols.
6868
* Fix `JSON.unsafe_load` usage with proc
69-
* Fix the parser to more consistently reject invalid UTF-16 surogate pairs.
69+
* Fix the parser to more consistently reject invalid UTF-16 surogate pairs.
7070
* Stop defining `String.json_create`, `String#to_json_raw`, `String#to_json_raw_object` when `json/add` isn't loaded.
7171

7272
### 2025-07-28 (2.13.2)

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ if defined?(RUBY_ENGINE) and RUBY_ENGINE == 'jruby'
159159
JAVA_VEC_SOURCES.each do |src|
160160
obj = src.sub(/\.java\Z/, '.class')
161161
file obj => src do
162-
sh 'javac', '--add-modules', 'jdk.incubator.vector', '-classpath', classpath, '--release', '16', src do |success, status|
162+
sh 'javac', '--add-modules', 'jdk.incubator.vector', '-classpath', classpath, '--release', '16', src do |success, status|
163163
if success
164164
puts "*** 'jdk.incubator.vector' support enabled ***"
165165
else

ext/json/ext/generator/generator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ ALWAYS_INLINE(static) void escape_UTF8_char_basic(search_state *search)
213213
* appended to the result.
214214
*/
215215

216-
216+
217217
#if defined(HAVE_SIMD_NEON)
218218
static inline unsigned char search_escape_basic_neon(search_state *search);
219219
#elif defined(HAVE_SIMD_SSE2)
220220
static inline unsigned char search_escape_basic_sse2(search_state *search);
221-
#endif
221+
#endif
222222

223223
static inline unsigned char search_escape_basic(search_state *search);
224224

0 commit comments

Comments
 (0)