I'm a beginner in angularjs and I'm trying to make a carousel in angularjs and when I put the ng-repeat tag in the html it comments the line, the images I'm pulling from an api, follow the html
<div class="carousel-inner">
<div class="item {{::($index === 0 ? 'active' : '')}}" ng-
repeat="slide in slides">
<img ng-src="{{ slide.url }}" alt="" title="">
</div>
</div>