diff options
author | taki <[email protected]> | 2020-03-15 07:20:09 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-06-09 10:07:10 +0900 |
commit | 8664f19796336080de093a75b921aa13fd0db049 (patch) | |
tree | bba67856bfbc0f5c721190ec7668083c3e132674 /lib/singleton.rb | |
parent | 1016cff4ff43d8977bda01cc59867e75ad238836 (diff) |
[ruby/singleton] Remove unnecessaray space
https://github.com/ruby/singleton/commit/b7c583f5cd
Diffstat (limited to 'lib/singleton.rb')
-rw-r--r-- | lib/singleton.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/singleton.rb b/lib/singleton.rb index 8e8a779a2e..32be573a78 100644 --- a/lib/singleton.rb +++ b/lib/singleton.rb @@ -13,7 +13,7 @@ # # This ensures that only one instance of Klass can be created. # -# a,b = Klass.instance, Klass.instance +# a,b = Klass.instance, Klass.instance # # a == b # # => true |