Skip to content

Commit f0965ba

Browse files
JayKanrobertmesserle
authored andcommitted
refactor(portal-errors): fix typos in error messages (#890)
1 parent 6d4484e commit f0965ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/portal/portal-errors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ export class MdUnknownPortalTypeError extends MdError {
4242
/** Exception thrown when attempting to attach a portal to a null host. */
4343
export class MdNullPortalHostError extends MdError {
4444
constructor() {
45-
super('Attmepting to attach a portal to a null PortalHost');
45+
super('Attempting to attach a portal to a null PortalHost');
4646
}
4747
}
4848

4949
/** Exception thrown when attempting to detach a portal that is not attached. */
5050
export class MdNoPortalAttachedError extends MdError {
5151
constructor() {
52-
super('Attmepting to detach a portal that is not attached to a host');
52+
super('Attempting to detach a portal that is not attached to a host');
5353
}
5454
}

0 commit comments

Comments
 (0)