Skip to content

Commit

Permalink
update typo in interface name (firebase#1138)
Browse files Browse the repository at this point in the history
FireabseErrorInterface -> FirebaseErrorInterface
  • Loading branch information
suchcodemuchwow authored and BorntraegerMarc committed Jan 28, 2021
1 parent a928607 commit 6304270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import { FirebaseError as FireabseErrorInterface } from '../firebase-namespace-api';
import { FirebaseError as FirebaseErrorInterface } from '../firebase-namespace-api';
import { deepCopy } from '../utils/deep-copy';

/**
Expand All @@ -39,7 +39,7 @@ interface ServerToClientCode {
* @param {ErrorInfo} errorInfo The error information (code and message).
* @constructor
*/
export class FirebaseError extends Error implements FireabseErrorInterface {
export class FirebaseError extends Error implements FirebaseErrorInterface {
constructor(private errorInfo: ErrorInfo) {
super(errorInfo.message);

Expand Down

0 comments on commit 6304270

Please sign in to comment.