summaryrefslogtreecommitdiffhomepage
path: root/mrblib
diff options
context:
space:
mode:
Diffstat (limited to 'mrblib')
-rw-r--r--mrblib/00class.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/mrblib/00class.rb b/mrblib/00class.rb
index 1a2d833c8..1811236f0 100644
--- a/mrblib/00class.rb
+++ b/mrblib/00class.rb
@@ -5,9 +5,10 @@ class Module
attr_writer(*names)
end
# 15.2.2.4.11
- def attr(name)
- attr_reader(name)
- end
+ alias attr attr_reader
+ #def attr(name)
+ # attr_reader(name)
+ #end
# 15.2.2.4.27
def include(*args)