aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar vladmos <vladmos@google.com>2018-01-24 06:24:46 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-01-24 06:25:59 -0800
commit2e76741c620e01c914d38d6a5469e5e3122ab03f (patch)
tree8ef0c82e1f23eb496655d268bd66d1ed85ef1e3a
parentefb093638803fb8552be69081873dc30b1cca6d3 (diff)
Fix a typo in Skylark specification
PiperOrigin-RevId: 183077008
-rw-r--r--site/docs/skylark/spec.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/skylark/spec.md b/site/docs/skylark/spec.md
index 943d1c50c5..d93ea45073 100644
--- a/site/docs/skylark/spec.md
+++ b/site/docs/skylark/spec.md
@@ -3180,7 +3180,7 @@ IfStmt = 'if' Test ':' Suite {'elif' Test ':' Suite} ['else' ':' Suite] .
ForStmt = 'for' LoopVariables 'in' Expression ':' Suite .
-Suite = [newline indent {Statement} outdent] SimpleStmt .
+Suite = [newline indent {Statement} outdent] | SimpleStmt .
SimpleStmt = SmallStmt {';' SmallStmt} [';'] '\n' .
# NOTE: '\n' optional at EOF