Skylark spec: -x is not an Operand, but a UnaryExpr

PiperOrigin-RevId: 203167019
diff --git a/site/docs/skylark/spec.md b/site/docs/skylark/spec.md
index ecd84a6..13cad17 100644
--- a/site/docs/skylark/spec.md
+++ b/site/docs/skylark/spec.md
@@ -12,7 +12,7 @@
 core language.  For example, Skylark is embedded within (and was
 originally developed for) the [Bazel build tool](https://bazel.build),
 and [Bazel's build language](https://docs.bazel.build/versions/master/skylark/language.html) is based on Skylark.
-Another implementation in Go can be found here: https://github.com/google/skylark/
+Another implementation in Go can be found here: [https://github.com/google/skylark/](https://github.com/google/skylark/)
 
 This document was derived from the [description of the Go
 implementation](https://github.com/google/skylark/blob/master/doc/spec.md)
@@ -23,7 +23,7 @@
 now maintained by the Bazel team.
 
 The name "Skylark" is a code name of the Bazel project.
-We plan to rename the language before the end of 2017 to reflect its
+We plan to rename the language soon to reflect its
 applicability to projects unrelated to Bazel.
 
 <!-- [TOC] -->
@@ -1149,8 +1149,6 @@
 SliceSuffix = '[' [Expression] [':' Test [':' Test]] ']' .
 ```
 
-TODO: resolve position of -x, and 'not x' in grammar: Operand or UnaryExpr?
-
 ### Identifiers
 
 ```text
@@ -1272,7 +1270,7 @@
 `-`, and `not`.
 
 ```text
-UnaryExpr = '-' PrimaryExpr
+UnaryExpr = '-' Test
           | 'not' Test
           .
 ```
@@ -3211,7 +3209,6 @@
         | ListExpr | ListComp
         | DictExpr | DictComp
         | '(' [Expression [',']] ')'
-        | '-' PrimaryExpr
         .
 
 DotSuffix   = '.' identifier .
@@ -3232,7 +3229,9 @@
 
 CompClause = 'for' LoopVariables 'in' Test | 'if' Test .
 
-UnaryExpr = 'not' Test .
+UnaryExpr = '-' Test
+          | 'not' Test
+          .
 
 BinaryExpr = Test {Binop Test} .