From 5dd7c5557d341d52f13ae5e011ae233f33393e0c Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Tue, 6 Aug 2024 11:59:36 -0700 Subject: [PATCH] sourcecode.social -> github.com --- README.md | 4 ++-- runescanner_buffered_test.go | 2 +- runewriter_test.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7ce105b..46b5220 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ This package is meant to be a replacement for Go's built-in `"unicode/utf8"` pac ## Documention -Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-utf8 +Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-utf8 -[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-utf8?status.svg)](https://godoc.org/sourcecode.social/reiver/go-utf8) +[![GoDoc](https://godoc.org/github.com/reiver/go-utf8?status.svg)](https://godoc.org/github.com/reiver/go-utf8) ## Reading a Single UTF-8 Character diff --git a/runescanner_buffered_test.go b/runescanner_buffered_test.go index 979221c..001229b 100644 --- a/runescanner_buffered_test.go +++ b/runescanner_buffered_test.go @@ -5,7 +5,7 @@ import ( "io" "strings" - "sourcecode.social/reiver/go-utf8" + "github.com/reiver/go-utf8" ) func TestRuneScanner_Buffered(t *testing.T) { diff --git a/runewriter_test.go b/runewriter_test.go index 18df7f8..75ed6be 100644 --- a/runewriter_test.go +++ b/runewriter_test.go @@ -1,7 +1,7 @@ package utf8_test import ( - "sourcecode.social/reiver/go-utf8" + "github.com/reiver/go-utf8" "strings"