lib/core/facets/module/abstract.rb in facets-2.4.5 vs lib/core/facets/module/abstract.rb in facets-2.5.0
- old
+ new
@@ -8,10 +8,10 @@
# end
#
# c = C.new
# c.a #=> Error: undefined abstraction #a
#
- # CREDIT: Trans
+ # CREDIT: Trans
def abstract( *sym )
sym.each { |s|
define_method( s ) { raise TypeError, "undefined abstraction ##{s}" }
}