Building Link List for Custom Tax

Got this to work, i was concatenating the html incorrectly.


$terms = get_terms( 'listing_categories' );
if($terms) : foreach ( $terms as $term ) {
echo '<li><a href="'.get_term_link($term).'">'.$term->name.'</a></li>';
} endif;