# File lib/puppet/resource/reference.rb, line 73
73:     def to_trans_ref
74:         # We have to return different cases to provide backward compatibility
75:         # from 0.24.x to 0.23.x.
76:         if builtin_type?
77:             return [type.to_s.downcase, title.to_s]
78:         else
79:             return [type.to_s, title.to_s]
80:         end
81:     end