diff --git a/README.md b/README.md
index e7472ba72..0d2e3a7df 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- (this.itemCollection);
+ items$ = collectionData
- (this.itemCollection);
}
```