From e9d35671d2c584e6a77a00fa4aacc5593b2fcb14 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 17 Jun 2025 17:01:34 +0900 Subject: [PATCH] [ruby/json] Fix a typo ruby/ruby#13636 https://github.com/ruby/json/commit/6fc2c4b6ab Co-Authored-By: Tim Smith --- ext/json/lib/json/common.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/json/lib/json/common.rb b/ext/json/lib/json/common.rb index 6393a6df55..486ec62a58 100644 --- a/ext/json/lib/json/common.rb +++ b/ext/json/lib/json/common.rb @@ -268,7 +268,7 @@ module JSON # to string interpolation. # # Note: no validation is performed on the provided string. It is the - # responsability of the caller to ensure the string contains valid JSON. + # responsibility of the caller to ensure the string contains valid JSON. Fragment = Struct.new(:json) do def initialize(json) unless string = String.try_convert(json)