File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ module Concurrent
142142 # practice is to read the instance variable into a local variable at the start
143143 # of the method then update the instance variable at the *end* of the method.
144144 # This way, should an exception be raised during method execution the internal
145- # state of the boject will not have been changed.
145+ # state of the object will not have been changed.
146146 #
147147 # ### Reader Attributes
148148 #
Original file line number Diff line number Diff line change 1919# the value will undergo frequent reads but only occasional, though complex,
2020# updates. Suitable when the result of an update must be known immediately.
2121# * *{Concurrent::AtomicReference}:* A simple object reference that can be
22- # atomically. Updates are synchronous but fast. Bast used when updates a
22+ # atomically. Updates are synchronous but fast. Best used when updates a
2323# simple set operations. Not suitable when updates are complex.
2424# {Concurrent::AtomicBoolean} and {Concurrent::AtomicFixnum} are similar
2525# but optimized for the given data type.
You can’t perform that action at this time.
0 commit comments