diff --git a/README.md b/README.md
index 40c77f55e..817453da4 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ interface Item {
selector: 'app-root',
template: `
- @for (item of (item$ | async); track item) {
+ @for (item of (items$ | async); track item) {
-
{{ item.name }}
@@ -58,7 +58,7 @@ interface Item {
export class AppComponent {
firestore = inject(Firestore);
itemCollection = collection(this.firestore, 'items');
- item$ = collectionData- (itemCollection);
+ items$ = collectionData
- (itemCollection);
}
```