C
Charles Roper
Say I have the following:
module Foo
def bar
puts "Baz"
end
end
If I want to write about (in some documentation, or a bug report) the
bar method of the Foo module, what's the best way of referring to it? E.g.,
I have found a bug in Foo::bar
I have found a bug in Foo.bar
I have found a bug in the bar method of the Foo module
Or some other way?
Many thanks!
Charles
module Foo
def bar
puts "Baz"
end
end
If I want to write about (in some documentation, or a bug report) the
bar method of the Foo module, what's the best way of referring to it? E.g.,
I have found a bug in Foo::bar
I have found a bug in Foo.bar
I have found a bug in the bar method of the Foo module
Or some other way?
Many thanks!
Charles