diff options
author | Andrei Beliankou <[email protected]> | 2021-04-13 20:03:00 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-05-10 16:08:29 +0900 |
commit | 94d858f81a6c8e23e720b01fb7e24614f9a4d3df (patch) | |
tree | 325a599994e332761a3b86518805fd9daeab9b3d | |
parent | 61e44995457837d30ccc3e2ae0c18aa1cdaf0c89 (diff) |
Add a space to separate sentences in the error message
-rw-r--r-- | lib/set/sorted_set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/set/sorted_set.rb b/lib/set/sorted_set.rb index e4e01ba4a8..bc07bc1fb0 100644 --- a/lib/set/sorted_set.rb +++ b/lib/set/sorted_set.rb @@ -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 |