Skip to content

Commit 4fd82b4

Browse files
authored
docs(): Added missing commas to NgModule (#2325)
1 parent f6cdf0f commit 4fd82b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/install-and-setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ import { environment } from '../environments/environment';
7676
@NgModule({
7777
imports: [
7878
BrowserModule,
79-
AngularFireModule.initializeApp(environment.firebase)
80-
AngularFireAnalyticsModule
79+
AngularFireModule.initializeApp(environment.firebase),
80+
AngularFireAnalyticsModule,
8181
AngularFirestoreModule
8282
],
8383
declarations: [ AppComponent ],
@@ -158,4 +158,4 @@ Finally, we can deploy the application to Firebase hosting:
158158

159159
```bash
160160
ng deploy
161-
```
161+
```

0 commit comments

Comments
 (0)