aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Donovan <alan@alandonovan.net>2019-09-19 10:56:10 -0400
committerGitHub <noreply@github.com>2019-09-19 10:56:10 -0400
commit979af19b165c9bb0bb725848ab91275634848354 (patch)
tree583543ffd5f42650c2db95cd08e91984fcd80370
parent988906f77f657477aa7ebf4d8fb5f12d6c50b767 (diff)
parent4104d23ca285510dce4005b5f16ee4b2912f66c2 (diff)
downloadstarlark-go-979af19b165c9bb0bb725848ab91275634848354.tar.gz
Merge pull request #242 from google/doc-type
doc: fix typo
-rw-r--r--doc/spec.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/spec.md b/doc/spec.md
index 9cd02d5..66d4a14 100644
--- a/doc/spec.md
+++ b/doc/spec.md
@@ -2500,7 +2500,7 @@ Example:
def twice(x):
return x * 2
-str(twice) # "<function f>"
+str(twice) # "<function twice>"
twice(2) # 4
twice("two") # "twotwo"
```