Fix spelling of environment

This commit is contained in:
Ian Wahbe 2021-08-31 00:54:07 -07:00
parent 59f88030b7
commit 27fc39c00a
2 changed files with 4 additions and 4 deletions

View file

@ -477,11 +477,11 @@ func callPythonCommand(proj *workspace.Project, root string, args ...string) (st
}
options := proj.Runtime.Options()
if options == nil {
return callPythonCommandNoEnviroment(args...)
return callPythonCommandNoEnvironment(args...)
}
virtualEnv, exists := options["virtualenv"]
if !exists {
return callPythonCommandNoEnviroment(args...)
return callPythonCommandNoEnvironment(args...)
}
virtualEnvPath := virtualEnv.(string)
// We now know that a virtual environment exists.
@ -498,7 +498,7 @@ func callPythonCommand(proj *workspace.Project, root string, args ...string) (st
// Call a python command in a runtime agnostic way. Call python from the path.
// Do not use a virtual environment.
func callPythonCommandNoEnviroment(args ...string) (string, error) {
func callPythonCommandNoEnvironment(args ...string) (string, error) {
cmd, err := python.Command(args...)
if err != nil {
return "", err

View file

@ -125,7 +125,7 @@ func (e *Environment) DeleteEnvironment() {
// DeleteEnvironment deletes the environment's RootPath, and everything
// underneath it. It tolerates failing to delete the environment.
func (e *Environment) DeleteEnviromentFallible() error {
func (e *Environment) DeleteEnvironmentFallible() error {
e.Helper()
return os.RemoveAll(e.RootPath)
}