From f589793531b9b8c87a20bc73d8698d804ec7b531 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Fri, 19 Jan 2024 16:03:38 +0900 Subject: [ruby/pstore] Do not include a backtick in error messages and backtraces [Feature #16495] https://github.com/ruby/pstore/commit/6be4e72a66 --- lib/pstore.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pstore.rb b/lib/pstore.rb index dd37f4950a..ee9e6f8914 100644 --- a/lib/pstore.rb +++ b/lib/pstore.rb @@ -437,7 +437,7 @@ class PStore in_transaction unless @table.key? key if default == PStore::Error - raise PStore::Error, format("undefined key `%s'", key) + raise PStore::Error, format("undefined key '%s'", key) else return default end -- cgit v1.2.3