Skip to content

Commit

Permalink
Merge pull request #2192 from jbampton/remove-duplicate-words
Browse files Browse the repository at this point in the history
Remove unneeded duplicate words
  • Loading branch information
seven1m committed Jul 5, 2024
2 parents d10888a + b7e38b6 commit 3877bed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dtoa.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
* FREE_DTOA_LOCK(...) are avoided; instead each thread with thread
* number < n has a separate copy of relevant data structures.
* After set_max_dtoa_threads(n), a call set_max_dtoa_threads(m)
* with m <= n has has no effect, but a call with m > n is honored.
* with m <= n has no effect, but a call with m > n is honored.
* Such a call invokes REALLOC (assumed to be "realloc" if REALLOC
* is not #defined) to extend the size of the relevant array.
Expand Down
2 changes: 1 addition & 1 deletion test/natalie/complex_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
r.imaginary.should == 3
end

it 'does not have have Comparable mixin more than once' do
it 'does not have Comparable mixin more than once' do
Complex.ancestors.count(Comparable).should == 1
end
end

0 comments on commit 3877bed

Please sign in to comment.