Skip to content

Commit 3ba3dd5

Browse files
authored
Expection -> Expecting
Ran into this during some mobx code writing. I'm assuming here that expecting is the correct word, although I am not sure.
1 parent c5123f4 commit 3ba3dd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/types/type-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function getAtom(thing: any, property?: string): IDepTreeNode {
4242
}
4343

4444
export function getAdministration(thing: any, property?: string) {
45-
invariant(thing, "Expection some object");
45+
invariant(thing, "Expecting some object");
4646
if (property !== undefined)
4747
return getAdministration(getAtom(thing, property));
4848
if (isAtom(thing) || isComputedValue(thing) || isReaction(thing))

0 commit comments

Comments
 (0)