How could i use ng-if from $scope

Hi, i want to use ng-if in :

<div ng-repeat="comment in comments">
**<div ng-if="{{comment.parent}} === '0'">**
<div class="comment-user">{{comment.author.name}}</div>
<div class="comment-isi" ng-bind-html="comment.content"></div>
</div>
</div>

but is not show anything. How could i use ng-if?
Thank you

<div ng-repeat="comment in comments" ng-if="comment.parent === 0">
    <div class="comment-user">{{comment.author.name}}</div>
    <div class="comment-isi" ng-bind-html="comment.content"></div>
</div>

@chnbohwr thank you…