aboutsummaryrefslogtreecommitdiff
path: root/starlark/value.go
diff options
context:
space:
mode:
Diffstat (limited to 'starlark/value.go')
-rw-r--r--starlark/value.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/starlark/value.go b/starlark/value.go
index 01ca0b4..ca44591 100644
--- a/starlark/value.go
+++ b/starlark/value.go
@@ -61,7 +61,7 @@
// returns an EvalError from which the application may obtain a
// backtrace of active Starlark calls.
//
-package starlark
+package starlark // import "go.starlark.net/starlark"
// This file defines the data types of Starlark and their basic operations.
@@ -75,8 +75,8 @@ import (
"strings"
"unicode/utf8"
- "github.com/google/starlark/internal/compile"
- "github.com/google/starlark/syntax"
+ "go.starlark.net/internal/compile"
+ "go.starlark.net/syntax"
)
// Value is a value in the Starlark interpreter.