From 1bfd6b2da08fca97316d86b2164dc807fa8330ab Mon Sep 17 00:00:00 2001 From: mhoeger Date: Mon, 11 Jun 2018 14:47:02 -0700 Subject: [PATCH] spelling mistake --- src/GrpcService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GrpcService.ts b/src/GrpcService.ts index b022218c..d8e4b78f 100644 --- a/src/GrpcService.ts +++ b/src/GrpcService.ts @@ -2,7 +2,7 @@ import * as semver from 'semver'; if (!semver.satisfies(process.version, '8.x || 10.x')) { let errorMessage = `Your Function App is currently set to use current version ${process.version}, but the runtime requires Node 8.x or 10.x. - For delpoyed code, please change WEBSITE_NODE_DEFAULT_VERSION in App Settings. On your local machine, you can change node version using 'nvm'`; + For deployed code, please change WEBSITE_NODE_DEFAULT_VERSION in App Settings. On your local machine, you can change node version using 'nvm'`; console.error(errorMessage); throw new Error(errorMessage); }