Skip to content

Commit

Permalink
Remove unnecessaray space
Browse files Browse the repository at this point in the history
  • Loading branch information
Taki committed Mar 14, 2020
1 parent e2b4c41 commit b7c583f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -32,7 +32,7 @@ end
This ensures that only one instance of Klass can be created.

```ruby
a,b = Klass.instance, Klass.instance
a,b = Klass.instance, Klass.instance

a == b
# => true
Expand Down
2 changes: 1 addition & 1 deletion lib/singleton.rb
Expand Up @@ -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
Expand Down

0 comments on commit b7c583f

Please sign in to comment.