Skip to content

Commit

Permalink
fix linq2
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Jun 8, 2022
1 parent 9715f59 commit f00e2a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wwwroot/code/linq02.sc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
`Sold out products:`
#each products where UnitsInStock = 0
#each products where UnitsInStock == 0
`${ProductName} is sold out!`
/each
2 changes: 1 addition & 1 deletion src/wwwroot/code/linq02.ss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Sold out products:
{{#each products where UnitsInStock = 0}}
{{#each products where UnitsInStock == 0}}
{{ ProductName }} is sold out!
{{/each}}

0 comments on commit f00e2a7

Please sign in to comment.