# File lib/loquacious/configuration/help.rb, line 163 def normalize_attr( name ) case name when String, nil; name.to_s when Symbol; name.to_s when Array; name.join('.') else raise Error, "cannot convert #{name.inspect} into an attribute identifier" end end