From 48fb1c2729211fe6ca37dd7c65f49ca11ffb690a Mon Sep 17 00:00:00 2001 From: Herwin Date: Thu, 10 Aug 2023 08:38:10 +0200 Subject: [PATCH] Typo fix: ist => is And remove the first comma in this sentence. --- library/bigdecimal/add_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/bigdecimal/add_spec.rb b/library/bigdecimal/add_spec.rb index 169a071aa..542713011 100644 --- a/library/bigdecimal/add_spec.rb +++ b/library/bigdecimal/add_spec.rb @@ -24,7 +24,7 @@ end it "returns a + b with given precision" do - # documentation states, that precision ist optional, but it ain't, + # documentation states that precision is optional, but it ain't, @two.add(@one, 1).should == @three @one .add(@two, 1).should == @three @one.add(@one_minus, 1).should == @zero