lib/mutex_m.rb: fix example code in documentation

* lib/mutex_m.rb: [DOC] fix invalid example code to make it
  syntax highlighted.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-10-21 14:02:00 +00:00
Родитель 27295e94f2
Коммит bca2cdcc0b
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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
# # ...