Skip to content

Commit

Permalink
Fix typo in Concurrent::AtomicBoolean docs
Browse files Browse the repository at this point in the history
  • Loading branch information
orhantoy committed Dec 3, 2019
1 parent cf0b250 commit 6fe29e4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/1.0.5/Concurrent/AtomicBoolean.html
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ <h3 class="signature " id="make_false-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down Expand Up @@ -580,7 +580,7 @@ <h3 class="signature " id="make_true-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down
4 changes: 2 additions & 2 deletions docs/1.1.4/Concurrent/AtomicBoolean.html
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ <h3 class="signature " id="make_false-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down Expand Up @@ -616,7 +616,7 @@ <h3 class="signature " id="make_true-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down
4 changes: 2 additions & 2 deletions docs/1.1.5/Concurrent/AtomicBoolean.html
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ <h3 class="signature " id="make_false-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down Expand Up @@ -616,7 +616,7 @@ <h3 class="signature " id="make_true-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down
4 changes: 2 additions & 2 deletions docs/master/Concurrent/AtomicBoolean.html
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ <h3 class="signature " id="make_false-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down Expand Up @@ -616,7 +616,7 @@ <h3 class="signature " id="make_true-instance_method">


&mdash;
<div class='inline'><p>true is value has changed, otherwise false</p>
<div class='inline'><p>true if value has changed, otherwise false</p>
</div>

</li>
Expand Down
4 changes: 2 additions & 2 deletions lib/concurrent/atomic/atomic_boolean.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ module Concurrent
#
# Explicitly sets the value to true.
#
# @return [Boolean] true is value has changed, otherwise false
# @return [Boolean] true if value has changed, otherwise false

# @!macro atomic_boolean_method_make_false
#
# Explicitly sets the value to false.
#
# @return [Boolean] true is value has changed, otherwise false
# @return [Boolean] true if value has changed, otherwise false

###################################################################

Expand Down

0 comments on commit 6fe29e4

Please sign in to comment.