summaryrefslogtreecommitdiff
path: root/spec/ruby/library/bigdecimal/gt_spec.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-26 12:26:42 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-26 12:53:11 +0900
commitd0f41aa2382612022162d033ddb3d9c9cc62099e (patch)
tree6009488684778eabcd0485c5658f8f5624ebc4a7 /spec/ruby/library/bigdecimal/gt_spec.rb
parent7860277527b9fef577cdaa0958147eb78a0ee9b7 (diff)
[ruby/spec] Removed space between method name and argument list paren
Diffstat (limited to 'spec/ruby/library/bigdecimal/gt_spec.rb')
-rw-r--r--spec/ruby/library/bigdecimal/gt_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/bigdecimal/gt_spec.rb b/spec/ruby/library/bigdecimal/gt_spec.rb
index 4717cfdd9d..78547fb85f 100644
--- a/spec/ruby/library/bigdecimal/gt_spec.rb
+++ b/spec/ruby/library/bigdecimal/gt_spec.rb
@@ -17,7 +17,7 @@ describe "BigDecimal#>" do
def coerce(other)
return [other, BigDecimal('123')]
end
- def > (other)
+ def >(other)
BigDecimal('123') > other
end
end