aboutsummaryrefslogtreecommitdiff
path: root/syntax/parse.go
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/parse.go')
-rw-r--r--syntax/parse.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/parse.go b/syntax/parse.go
index d8d3b33..4df8f84 100644
--- a/syntax/parse.go
+++ b/syntax/parse.go
@@ -589,7 +589,7 @@ var precedence [maxToken]int8
// preclevels groups operators of equal precedence.
// Comparisons are nonassociative; other binary operators associate to the left.
// Unary MINUS, unary PLUS, and TILDE have higher precedence so are handled in parsePrimary.
-// See https://github.com/google/starlark/blob/master/doc/spec.md#binary-operators
+// See https://go.starlark.net/starlark/blob/master/doc/spec.md#binary-operators
var preclevels = [...][]Token{
{OR}, // or
{AND}, // and