1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add a space to separate sentences in the error message

This commit is contained in:
Andrei Beliankou 2021-04-13 20:03:00 +02:00 committed by Hiroshi SHIBATA
parent 61e4499545
commit 94d858f81a
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -1,6 +1,6 @@
begin
require 'sorted_set'
rescue ::LoadError
raise "The `SortedSet` class has been extracted from the `set` library." \
raise "The `SortedSet` class has been extracted from the `set` library. " \
"You must use the `sorted_set` gem or other alternatives."
end