Skip to content

Commit 2785ca4

Browse files
authored
Merge pull request #837 from orhantoy/fix-typo
Fix typo in Concurrent::AtomicBoolean docs
2 parents cf0b250 + 6fe29e4 commit 2785ca4

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/1.0.5/Concurrent/AtomicBoolean.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ <h3 class="signature " id="make_false-instance_method">
513513

514514

515515
&mdash;
516-
<div class='inline'><p>true is value has changed, otherwise false</p>
516+
<div class='inline'><p>true if value has changed, otherwise false</p>
517517
</div>
518518

519519
</li>
@@ -580,7 +580,7 @@ <h3 class="signature " id="make_true-instance_method">
580580

581581

582582
&mdash;
583-
<div class='inline'><p>true is value has changed, otherwise false</p>
583+
<div class='inline'><p>true if value has changed, otherwise false</p>
584584
</div>
585585

586586
</li>

docs/1.1.4/Concurrent/AtomicBoolean.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ <h3 class="signature " id="make_false-instance_method">
549549

550550

551551
&mdash;
552-
<div class='inline'><p>true is value has changed, otherwise false</p>
552+
<div class='inline'><p>true if value has changed, otherwise false</p>
553553
</div>
554554

555555
</li>
@@ -616,7 +616,7 @@ <h3 class="signature " id="make_true-instance_method">
616616

617617

618618
&mdash;
619-
<div class='inline'><p>true is value has changed, otherwise false</p>
619+
<div class='inline'><p>true if value has changed, otherwise false</p>
620620
</div>
621621

622622
</li>

docs/1.1.5/Concurrent/AtomicBoolean.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ <h3 class="signature " id="make_false-instance_method">
549549

550550

551551
&mdash;
552-
<div class='inline'><p>true is value has changed, otherwise false</p>
552+
<div class='inline'><p>true if value has changed, otherwise false</p>
553553
</div>
554554

555555
</li>
@@ -616,7 +616,7 @@ <h3 class="signature " id="make_true-instance_method">
616616

617617

618618
&mdash;
619-
<div class='inline'><p>true is value has changed, otherwise false</p>
619+
<div class='inline'><p>true if value has changed, otherwise false</p>
620620
</div>
621621

622622
</li>

docs/master/Concurrent/AtomicBoolean.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ <h3 class="signature " id="make_false-instance_method">
549549

550550

551551
&mdash;
552-
<div class='inline'><p>true is value has changed, otherwise false</p>
552+
<div class='inline'><p>true if value has changed, otherwise false</p>
553553
</div>
554554

555555
</li>
@@ -616,7 +616,7 @@ <h3 class="signature " id="make_true-instance_method">
616616

617617

618618
&mdash;
619-
<div class='inline'><p>true is value has changed, otherwise false</p>
619+
<div class='inline'><p>true if value has changed, otherwise false</p>
620620
</div>
621621

622622
</li>

lib/concurrent/atomic/atomic_boolean.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ module Concurrent
4141
#
4242
# Explicitly sets the value to true.
4343
#
44-
# @return [Boolean] true is value has changed, otherwise false
44+
# @return [Boolean] true if value has changed, otherwise false
4545

4646
# @!macro atomic_boolean_method_make_false
4747
#
4848
# Explicitly sets the value to false.
4949
#
50-
# @return [Boolean] true is value has changed, otherwise false
50+
# @return [Boolean] true if value has changed, otherwise false
5151

5252
###################################################################
5353

0 commit comments

Comments
 (0)