Subject: | Typo in WWW::Google::Contacts::Type::Rel |
I don't think this is what you meant in _build_name:
unless ( $self->uri =~ m{\#(\.*)$} ) {
You do not want "\." but just ".", I think. Strictly speaking, I do not think \# is needed since you
are not using /x, but it does not harm anything either.