summaryrefslogtreecommitdiff
path: root/lib/mutex_m.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mutex_m.rb')
-rw-r--r--lib/mutex_m.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mutex_m.rb b/lib/mutex_m.rb
index 555331edcc..dd47934bea 100644
--- a/lib/mutex_m.rb
+++ b/lib/mutex_m.rb
@@ -25,12 +25,12 @@
# obj.extend Mutex_m
#
# Or mixin Mutex_m into your module to your class inherit Mutex instance
-# methods ---remember to call super() in your class initialize method.
+# methods --- remember to call super() in your class initialize method.
#
# class Foo
# include Mutex_m
-# def initialize ...
-# ...
+# def initialize
+# # ...
# super()
# end
# # ...