aboutsummaryrefslogtreecommitdiff
path: root/options
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2026-05-03 20:16:14 +0200
committerStefan Majewsky <majewsky@gmx.net>2026-05-03 20:16:14 +0200
commit80e08e6aee59ef32355fe5a376f295f1fd7dec1c (patch)
treeb49c2f974a9898caa3dd9cb094101a1b236c0e32 /options
parent9fd5ae1214c3f4af53dfa5c45adee68769981b18 (diff)
downloadgo-gg-80e08e6aee59ef32355fe5a376f295f1fd7dec1c.tar.gz
change module path to go.xyrillian.de/gg
Also, some other small adjustments for the documentation to make it fit with the overall vibe of the new home.
Diffstat (limited to 'options')
-rw-r--r--options/options.go4
-rw-r--r--options/options_test.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/options/options.go b/options/options.go
index 22d645d..429f31a 100644
--- a/options/options.go
+++ b/options/options.go
@@ -3,12 +3,12 @@
// Package options provides additional functions for type option.Option
// that cannot be expressed as methods on the Option type itself.
-package options
+package options // import "go.xyrillian.de/gg/options"
import (
"cmp"
- . "github.com/majewsky/gg/option"
+ . "go.xyrillian.de/gg/option"
)
// NOTE: Keep functions sorted by name.
diff --git a/options/options_test.go b/options/options_test.go
index fc9861f..b80d550 100644
--- a/options/options_test.go
+++ b/options/options_test.go
@@ -7,8 +7,8 @@ import (
"strconv"
"testing"
- . "github.com/majewsky/gg/internal/test"
- . "github.com/majewsky/gg/option"
+ . "go.xyrillian.de/gg/internal/test"
+ . "go.xyrillian.de/gg/option"
)
func TestFromPointer(t *testing.T) {