In the code block the first line is: ``` <div *ngIf="recipes$ |async as recipes" class="card"> ``` It should be: ``` <div *ngIf="recipes$ |async; as recipes" class="card"> ``` It is correct in the repository code but not in the book.