Skip to content

Commit c169c67

Browse files
asithadedavideast
andauthored
Fix spelling for determine (#3349)
Co-authored-by: David East <[email protected]>
1 parent bb3d922 commit c169c67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/schematics/deploy/builder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ export default createBuilder(
1919

2020
const firebaseProject = options.firebaseProject || defaultFirebaseProject;
2121
if (!firebaseProject) {
22-
throw new Error('Cannot detirmine the Firebase Project from your angular.json or .firebaserc');
22+
throw new Error('Cannot determine the Firebase Project from your angular.json or .firebaserc');
2323
}
2424
if (firebaseProject !== defaultFirebaseProject) {
2525
throw new Error('The Firebase Project specified by your angular.json or .firebaserc is in conflict');
2626
}
2727

2828
const firebaseHostingSite = options.firebaseHostingSite || defulatFirebaseHostingSite;
2929
if (!firebaseHostingSite) {
30-
throw new Error(`Cannot detirmine the Firebase Hosting Site from your angular.json or .firebaserc`);
30+
throw new Error(`Cannot determine the Firebase Hosting Site from your angular.json or .firebaserc`);
3131
}
3232
if (firebaseHostingSite !== defulatFirebaseHostingSite) {
3333
throw new Error('The Firebase Hosting Site specified by your angular.json or .firebaserc is in conflict');

0 commit comments

Comments
 (0)