In order to help contributors. We would love ❤️ to add some code documentation like TomDoc
# Public: Duplicate some text an arbitrary number of times.
#
# text - The String to be duplicated.
# count - The Integer number of times to duplicate the text.
#
# Examples
#
# multiplex('Tom', 4)
# # => 'TomTomTomTom'
#
# Returns the duplicated String.
def multiplex(text, count)
text * count
end
In order to help contributors. We would love ❤️ to add some code documentation like TomDoc
eg: