1
0
Fork 0

added a comment to explain self.name[13..-1] since I can't think of a more intutive way to handle that.

This commit is contained in:
Thomas Wolfe 2013-11-06 17:46:17 -06:00 committed by Diego d'Ursel
parent 2d4c1c42fd
commit b77fcac50b
1 changed files with 1 additions and 0 deletions

View File

@ -59,6 +59,7 @@ module MusicBrainz
end
def underscore_name
# self.name[13..-1] => removes MusicBrainz::
self.name[13..-1].underscore
end