From 3b5a6d1a025c23154b277d4c07e85daf2cb31b40 Mon Sep 17 00:00:00 2001 From: karthickeyan Date: Wed, 31 Mar 2021 23:04:48 +0530 Subject: [PATCH] Update configuration.md (#1707) Fixing a typo in "extraPaths" of configuration.md document --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 28d2138c6..21b8016d2 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -154,7 +154,7 @@ The following settings can be specified for each execution environment. **root** [string, required]: Root path for the code that will execute within this execution environment. -**extraPaths** [array of strings, optional]: Additional search paths (in addition to the root path) that will be used when searching for modules imported by files within this execution environment. If specified, this overrides the default extraPaths setting when resolving imports for files within this execution environment. Note that each file’s execution environment mapping is independent, so if file A is in one execution environment ane imports a second file B within a second execution environment, any imports from B will use the extraPaths in the second execution environment. +**extraPaths** [array of strings, optional]: Additional search paths (in addition to the root path) that will be used when searching for modules imported by files within this execution environment. If specified, this overrides the default extraPaths setting when resolving imports for files within this execution environment. Note that each file’s execution environment mapping is independent, so if file A is in one execution environment and imports a second file B within a second execution environment, any imports from B will use the extraPaths in the second execution environment. **pythonVersion** [string, optional]: The version of Python used for this execution environment. If not specified, the global `pythonVersion` setting is used instead.