aboutsummaryrefslogtreecommitdiff
path: root/is
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 /is
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 'is')
-rw-r--r--is/doc.go4
-rw-r--r--is/is_test.go6
2 files changed, 5 insertions, 5 deletions
diff --git a/is/doc.go b/is/doc.go
index 42af01e..fa59b34 100644
--- a/is/doc.go
+++ b/is/doc.go
@@ -7,7 +7,7 @@
// This is not useful on its own, but may significantly improve readability
// when replacing function literals. Consider the following example:
//
-// import . "github.com/majewsky/gg/option"
+// import . "go.xyrillian.de/gg/option"
//
// func checkNewVolumeSize(size, usage uint64, maxSize Option[uint64]) error {
// switch {
@@ -25,4 +25,4 @@
// case maxSize.IsSomeAnd(func(value uint64) bool { return maxSize < size }):
// // rewritten
// case maxSize.IsSomeAnd(is.LessThan(size)):
-package is
+package is // import "go.xyrillian.de/gg/is"
diff --git a/is/is_test.go b/is/is_test.go
index 3c6c7db..854fd48 100644
--- a/is/is_test.go
+++ b/is/is_test.go
@@ -7,9 +7,9 @@ import (
"testing"
"time"
- . "github.com/majewsky/gg/internal/test"
- "github.com/majewsky/gg/is"
- . "github.com/majewsky/gg/option"
+ . "go.xyrillian.de/gg/internal/test"
+ "go.xyrillian.de/gg/is"
+ . "go.xyrillian.de/gg/option"
)
func TestComparable(t *testing.T) {