ApolloServer: fix uploads error message (#1820)

There was a typo in the error message.
This commit is contained in:
Evan Lucas 2018-11-12 08:04:11 -06:00 committed by Jesse Rosenberger
parent 3ed9e4ced7
commit 59af364aa3

View file

@ -210,7 +210,7 @@ export class ApolloServerBase {
//default we enable them if supported by the integration
} else if (uploads) {
throw new Error(
'This implementation of ApolloServer does not support file uploads because the environmnet cannot accept multi-part forms',
'This implementation of ApolloServer does not support file uploads because the environment cannot accept multi-part forms',
);
}
}