We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc984e commit 82176a7Copy full SHA for 82176a7
lib/concurrent/ivar.rb
@@ -16,10 +16,10 @@ module Concurrent
16
# a low-level primitive.
17
#
18
# @example Create, set and get an `IVar`
19
- # ivar = Concurrent::IVar.new
20
- # ivar.set 14
21
- # ivar.get #=> 14
22
- # ivar.set 2 # would now be an error
+ # ivar = Concurrent::IVar.new
+ # ivar.set 14
+ # ivar.get #=> 14
+ # ivar.set 2 # would now be an error
23
class IVar
24
25
# Error that indicates that an `IVar` was set twice. Each `IVar` can only
0 commit comments