From 2a189546ee0e946b2804778c7d631ae26dc845cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ximo=20Cuadros?= Date: Thu, 9 Apr 2020 23:59:57 +0200 Subject: [PATCH] starlark/module: os, command documention improvement --- starlark/module/os/os.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starlark/module/os/os.go b/starlark/module/os/os.go index 1708d22..f0a777f 100644 --- a/starlark/module/os/os.go +++ b/starlark/module/os/os.go @@ -345,7 +345,7 @@ func TempDir(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, // // outline: os // functions: -// command(command, shell?, dir?, combined?, env?) +// command(command, shell=False, dir="", combined=False, env=[]) // runs the command and returns its standard output. If the exit code // it different to zero, an error is triggered. // params: