ABenassi87 / ngx-text-diff

A Text Diff component for Angular
https://ngx-text-diff.herokuapp.com/home
50 stars 44 forks source link

Documentation code error fix. Closing the selector fixed the issue. #58

Open SandeepBalachandran opened 3 years ago

SandeepBalachandran commented 3 years ago

Current behavior

<td-ngx-text-diff
  [left]="left"
  [right]="right"
  (compareResults)="onCompareResults($event)"
>

Fixed behavior

<td-ngx-text-diff
  [left]="left"
  [right]="right"
  (compareResults)="onCompareResults($event)"
></td-ngx-text-diff>

This PR will fix the issue noted in #57

SandeepBalachandran commented 3 years ago

Hi there, Do we have any impediments here?