aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authoralandonovan <adonovan@google.com>2019-05-28 16:17:12 -0400
committerGitHub <noreply@github.com>2019-05-28 16:17:12 -0400
commit58e2b62d7414b3625d5f77707046d35410ff1cbe (patch)
tree9c0cf44362bbfed1689efd451d87bb1075328272 /doc
parent3ee1685e32e578a76e47ff640615201520381b87 (diff)
downloadstarlark-go-58e2b62d7414b3625d5f77707046d35410ff1cbe.tar.gz
doc: print: drop mention of kwargs (#209)
Updates bazelbuild/starlark#47
Diffstat (limited to 'doc')
-rw-r--r--doc/spec.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/spec.md b/doc/spec.md
index 49a7653..4fee3e0 100644
--- a/doc/spec.md
+++ b/doc/spec.md
@@ -3120,7 +3120,6 @@ See also: `chr`.
`print(*args, sep=" ")` prints its arguments, followed by a newline.
Arguments are formatted as if by `str(x)` and separated with a space,
unless an alternative separator is specified by a `sep` named argument.
-Keyword arguments are preceded by their name.
Example: