From a1b13871efc1c854c2e5982c9afc2759c85b7051 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Thu, 25 Jul 2024 04:33:45 -0700 Subject: [PATCH] sourcecode.social -> github.com --- README.md | 9 ++++----- bytes/encodebyte.go | 2 +- bytes/encodebyte_test.go | 2 +- bytes/encodeint16.go | 2 +- bytes/encodeint32.go | 2 +- bytes/encodeint64.go | 2 +- bytes/encodeint64_test.go | 2 +- bytes/encodeint8.go | 2 +- bytes/encodeint8_test.go | 2 +- bytes/encodeuint16.go | 2 +- bytes/encodeuint32.go | 2 +- bytes/encodeuint64.go | 2 +- bytes/encodeuint64_test.go | 2 +- decodebyte_test.go | 2 +- encodebyte.go | 4 ++-- encodeint16.go | 4 ++-- encodeint32.go | 4 ++-- encodeint64.go | 4 ++-- encodeint8.go | 4 ++-- encodeuint16.go | 4 ++-- encodeuint32.go | 4 ++-- encodeuint64.go | 4 ++-- go.mod | 2 +- runes/encodebyte.go | 2 +- runes/encodebyte_test.go | 2 +- runes/encodeint16.go | 2 +- runes/encodeint32.go | 2 +- runes/encodeint64.go | 2 +- runes/encodeint64_test.go | 2 +- runes/encodeint8.go | 2 +- runes/encodeint8_test.go | 2 +- runes/encodeuint16.go | 2 +- runes/encodeuint32.go | 2 +- runes/encodeuint64.go | 2 +- runes/encodeuint64_test.go | 2 +- symbols/byte/lowercase_test.go | 2 +- symbols/byte/uppercase_test.go | 2 +- symbols/rune/lowercase.go | 2 +- symbols/rune/lowercase_test.go | 2 +- symbols/rune/persian_test.go | 2 +- symbols/rune/uppercase.go | 2 +- symbols/rune/uppercase_test.go | 2 +- 42 files changed, 53 insertions(+), 54 deletions(-) diff --git a/README.md b/README.md index 9f32098..190b068 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ - # go-hexadeca Package **hexadeca** implements **hexadecimal** _encoding_ and _decoding_, for the Go programming language. @@ -31,9 +30,9 @@ Package **hexadeca** has functions for hexadecimal encoding and decoding for the ## Documention -Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-hexadeca +Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-hexadeca -[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-hexadeca?status.svg)](https://godoc.org/sourcecode.social/reiver/go-hexadeca) +[![GoDoc](https://godoc.org/github.com/reiver/go-hexadeca?status.svg)](https://godoc.org/github.com/reiver/go-hexadeca) ## Symbols @@ -114,14 +113,14 @@ Samples: To import package **hexadeca** use `import` code like the following: ``` -import "sourcecode.social/reiver/go-hexadeca" +import "github.com/reiver/go-hexadeca" ``` ## Installation To install package **hexadeca** do the following: ``` -GOPROXY=direct go get https://sourcecode.social/reiver/go-hexadeca +GOPROXY=direct go get https://github.com/reiver/go-hexadeca ``` ## Author diff --git a/bytes/encodebyte.go b/bytes/encodebyte.go index e54039d..21b4477 100644 --- a/bytes/encodebyte.go +++ b/bytes/encodebyte.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) // EncodeByte encodes the value of a byte into hexadecimal. diff --git a/bytes/encodebyte_test.go b/bytes/encodebyte_test.go index 93ac289..b542bec 100644 --- a/bytes/encodebyte_test.go +++ b/bytes/encodebyte_test.go @@ -3,7 +3,7 @@ package hexadecabytes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/bytes" ) func TestEncodeByteUsingLowerCaseSymbols(t *testing.T) { diff --git a/bytes/encodeint16.go b/bytes/encodeint16.go index 6249a92..470eff4 100644 --- a/bytes/encodeint16.go +++ b/bytes/encodeint16.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func EncodeInt16(value int16, symbolFunc func(byte)byte) (r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/bytes/encodeint32.go b/bytes/encodeint32.go index 44e62b5..25e02b0 100644 --- a/bytes/encodeint32.go +++ b/bytes/encodeint32.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func EncodeInt32(value int32, symbolFunc func(byte)byte) (r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/bytes/encodeint64.go b/bytes/encodeint64.go index c81d384..867ba5d 100644 --- a/bytes/encodeint64.go +++ b/bytes/encodeint64.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func EncodeInt64(value int64, symbolFunc func(byte)byte) (r15 byte, r14 byte, r13 byte, r12 byte, r11 byte, r10 byte, r9 byte, r8 byte, r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/bytes/encodeint64_test.go b/bytes/encodeint64_test.go index 91feb89..1fdfa52 100644 --- a/bytes/encodeint64_test.go +++ b/bytes/encodeint64_test.go @@ -3,7 +3,7 @@ package hexadecabytes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/bytes" ) func TestEncodeInt64UsingLowerCaseSymbols(t *testing.T) { diff --git a/bytes/encodeint8.go b/bytes/encodeint8.go index b973d53..a0a0420 100644 --- a/bytes/encodeint8.go +++ b/bytes/encodeint8.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) // EncodeInt8 encodes the value of a int8 into hexadecimal. diff --git a/bytes/encodeint8_test.go b/bytes/encodeint8_test.go index dc77ba3..5c4e3d7 100644 --- a/bytes/encodeint8_test.go +++ b/bytes/encodeint8_test.go @@ -3,7 +3,7 @@ package hexadecabytes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/bytes" ) func TestEncodeInt8UsingLowerCaseSymbols(t *testing.T) { diff --git a/bytes/encodeuint16.go b/bytes/encodeuint16.go index 695c898..6e347f4 100644 --- a/bytes/encodeuint16.go +++ b/bytes/encodeuint16.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func EncodeUint16(value uint16, symbolFunc func(byte)byte) (r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/bytes/encodeuint32.go b/bytes/encodeuint32.go index f205478..2a81969 100644 --- a/bytes/encodeuint32.go +++ b/bytes/encodeuint32.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func EncodeUint32(value uint32, symbolFunc func(byte)byte) (r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/bytes/encodeuint64.go b/bytes/encodeuint64.go index 09c3ec6..0b7b96a 100644 --- a/bytes/encodeuint64.go +++ b/bytes/encodeuint64.go @@ -1,7 +1,7 @@ package hexadecabytes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func EncodeUint64(value uint64, symbolFunc func(byte)byte) (r15 byte, r14 byte, r13 byte, r12 byte, r11 byte, r10 byte, r9 byte, r8 byte, r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/bytes/encodeuint64_test.go b/bytes/encodeuint64_test.go index faa96b4..c1b1d0e 100644 --- a/bytes/encodeuint64_test.go +++ b/bytes/encodeuint64_test.go @@ -3,7 +3,7 @@ package hexadecabytes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/bytes" ) func TestEncodeUint64UsingLowerCaseSymbols(t *testing.T) { diff --git a/decodebyte_test.go b/decodebyte_test.go index 9a5c334..de0ec74 100644 --- a/decodebyte_test.go +++ b/decodebyte_test.go @@ -3,7 +3,7 @@ package hexadeca_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca" + "github.com/reiver/go-hexadeca" ) func TestDecodeByte(t *testing.T) { diff --git a/encodebyte.go b/encodebyte.go index 9591589..188ac80 100644 --- a/encodebyte.go +++ b/encodebyte.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeByteUsingLowerCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) { diff --git a/encodeint16.go b/encodeint16.go index dacc28c..c82288e 100644 --- a/encodeint16.go +++ b/encodeint16.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeInt16UsingLowerCaseSymbols(value int16) (r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/encodeint32.go b/encodeint32.go index de1bc30..3abba02 100644 --- a/encodeint32.go +++ b/encodeint32.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeInt32UsingLowerCaseSymbols(value int32) (r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/encodeint64.go b/encodeint64.go index 5851e73..9e0e597 100644 --- a/encodeint64.go +++ b/encodeint64.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeInt64UsingLowerCaseSymbols(value int64) (r15 byte, r14 byte, r13 byte, r12 byte, r11 byte, r10 byte, r9 byte, r8 byte, r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/encodeint8.go b/encodeint8.go index 39ebcf9..6e38189 100644 --- a/encodeint8.go +++ b/encodeint8.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeInt8UsingLowerCaseSymbols(value int8) (mostSignificant byte, leastSignificant byte) { diff --git a/encodeuint16.go b/encodeuint16.go index 18b6d9b..514acde 100644 --- a/encodeuint16.go +++ b/encodeuint16.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeUint16UsingLowerCaseSymbols(value uint16) (r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/encodeuint32.go b/encodeuint32.go index 2c700cb..0bf49f4 100644 --- a/encodeuint32.go +++ b/encodeuint32.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeUint32UsingLowerCaseSymbols(value uint32) (r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/encodeuint64.go b/encodeuint64.go index b831eaf..c63782e 100644 --- a/encodeuint64.go +++ b/encodeuint64.go @@ -1,8 +1,8 @@ package hexadeca import ( - "sourcecode.social/reiver/go-hexadeca/bytes" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/bytes" + "github.com/reiver/go-hexadeca/runes" ) func EncodeUint64UsingLowerCaseSymbols(value uint64) (r15 byte, r14 byte, r13 byte, r12 byte, r11 byte, r10 byte, r9 byte, r8 byte, r7 byte, r6 byte, r5 byte, r4 byte, r3 byte, r2 byte, r1 byte, r0 byte) { diff --git a/go.mod b/go.mod index 43293dc..6b8308a 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module sourcecode.social/reiver/go-hexadeca +module github.com/reiver/go-hexadeca go 1.20 diff --git a/runes/encodebyte.go b/runes/encodebyte.go index fcaeb77..b3cc28d 100644 --- a/runes/encodebyte.go +++ b/runes/encodebyte.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) // EncodeByte encodes the value of a byte into hexadecimal. diff --git a/runes/encodebyte_test.go b/runes/encodebyte_test.go index 0d9412b..681edb3 100644 --- a/runes/encodebyte_test.go +++ b/runes/encodebyte_test.go @@ -3,7 +3,7 @@ package hexadecarunes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/runes" ) func TestEncodeByteUsingLowerCaseSymbols(t *testing.T) { diff --git a/runes/encodeint16.go b/runes/encodeint16.go index e716f4c..9d78f3d 100644 --- a/runes/encodeint16.go +++ b/runes/encodeint16.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func EncodeInt16(value int16, symbolFunc func(byte)rune) (r3 rune, r2 rune, r1 rune, r0 rune) { diff --git a/runes/encodeint32.go b/runes/encodeint32.go index 4c633bd..e805aa9 100644 --- a/runes/encodeint32.go +++ b/runes/encodeint32.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func EncodeInt32(value int32, symbolFunc func(byte)rune) (r7 rune, r6 rune, r5 rune, r4 rune, r3 rune, r2 rune, r1 rune, r0 rune) { diff --git a/runes/encodeint64.go b/runes/encodeint64.go index a694549..14e3e24 100644 --- a/runes/encodeint64.go +++ b/runes/encodeint64.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func EncodeInt64(value int64, symbolFunc func(byte)rune) (r15 rune, r14 rune, r13 rune, r12 rune, r11 rune, r10 rune, r9 rune, r8 rune, r7 rune, r6 rune, r5 rune, r4 rune, r3 rune, r2 rune, r1 rune, r0 rune) { diff --git a/runes/encodeint64_test.go b/runes/encodeint64_test.go index 473c5fc..21d87a3 100644 --- a/runes/encodeint64_test.go +++ b/runes/encodeint64_test.go @@ -3,7 +3,7 @@ package hexadecarunes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/runes" ) func TestEncodeInt64UsingLowerCaseSymbols(t *testing.T) { diff --git a/runes/encodeint8.go b/runes/encodeint8.go index 4652d81..14303b9 100644 --- a/runes/encodeint8.go +++ b/runes/encodeint8.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) // EncodeInt8 encodes the value of a int8 into hexadecimal. diff --git a/runes/encodeint8_test.go b/runes/encodeint8_test.go index db56327..2c12eb6 100644 --- a/runes/encodeint8_test.go +++ b/runes/encodeint8_test.go @@ -3,7 +3,7 @@ package hexadecarunes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/runes" ) func TestEncodeInt8UsingLowerCaseSymbols(t *testing.T) { diff --git a/runes/encodeuint16.go b/runes/encodeuint16.go index d535139..6abf23c 100644 --- a/runes/encodeuint16.go +++ b/runes/encodeuint16.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func EncodeUint16(value uint16, symbolFunc func(byte)rune) (r3 rune, r2 rune, r1 rune, r0 rune) { diff --git a/runes/encodeuint32.go b/runes/encodeuint32.go index a571dc5..1439218 100644 --- a/runes/encodeuint32.go +++ b/runes/encodeuint32.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func EncodeUint32(value uint32, symbolFunc func(byte)rune) (r7 rune, r6 rune, r5 rune, r4 rune, r3 rune, r2 rune, r1 rune, r0 rune) { diff --git a/runes/encodeuint64.go b/runes/encodeuint64.go index 6c84800..b21d873 100644 --- a/runes/encodeuint64.go +++ b/runes/encodeuint64.go @@ -1,7 +1,7 @@ package hexadecarunes import ( - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func EncodeUint64(value uint64, symbolFunc func(byte)rune) (r15 rune, r14 rune, r13 rune, r12 rune, r11 rune, r10 rune, r9 rune, r8 rune, r7 rune, r6 rune, r5 rune, r4 rune, r3 rune, r2 rune, r1 rune, r0 rune) { diff --git a/runes/encodeuint64_test.go b/runes/encodeuint64_test.go index c495d7a..fc0a52e 100644 --- a/runes/encodeuint64_test.go +++ b/runes/encodeuint64_test.go @@ -3,7 +3,7 @@ package hexadecarunes_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/runes" + "github.com/reiver/go-hexadeca/runes" ) func TestEncodeUint64UsingLowerCaseSymbols(t *testing.T) { diff --git a/symbols/byte/lowercase_test.go b/symbols/byte/lowercase_test.go index 6644ffe..8c4c4e6 100644 --- a/symbols/byte/lowercase_test.go +++ b/symbols/byte/lowercase_test.go @@ -3,7 +3,7 @@ package bytesymbols_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func TestSymbolLowerCase(t *testing.T) { diff --git a/symbols/byte/uppercase_test.go b/symbols/byte/uppercase_test.go index 8de0bd6..ae0f471 100644 --- a/symbols/byte/uppercase_test.go +++ b/symbols/byte/uppercase_test.go @@ -3,7 +3,7 @@ package bytesymbols_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) func TestSymbolUpperCase(t *testing.T) { diff --git a/symbols/rune/lowercase.go b/symbols/rune/lowercase.go index 0697046..fdda29d 100644 --- a/symbols/rune/lowercase.go +++ b/symbols/rune/lowercase.go @@ -1,7 +1,7 @@ package runesymbols import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) // LowerCase is used with hexadeca.EncodeByte() to encode a byte into hexadecimal symbols using lower-case symbols from ASCII / Unicode UTF-8. diff --git a/symbols/rune/lowercase_test.go b/symbols/rune/lowercase_test.go index d660416..f3f9bde 100644 --- a/symbols/rune/lowercase_test.go +++ b/symbols/rune/lowercase_test.go @@ -3,7 +3,7 @@ package runesymbols_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func TestLowerCase(t *testing.T) { diff --git a/symbols/rune/persian_test.go b/symbols/rune/persian_test.go index ee40606..0d89981 100644 --- a/symbols/rune/persian_test.go +++ b/symbols/rune/persian_test.go @@ -3,7 +3,7 @@ package runesymbols_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func TestPersian(t *testing.T) { diff --git a/symbols/rune/uppercase.go b/symbols/rune/uppercase.go index 1095e25..7bba250 100644 --- a/symbols/rune/uppercase.go +++ b/symbols/rune/uppercase.go @@ -1,7 +1,7 @@ package runesymbols import ( - "sourcecode.social/reiver/go-hexadeca/symbols/byte" + "github.com/reiver/go-hexadeca/symbols/byte" ) // UpperCase is used with hexadeca.EncodeByte() to encode a byte into hexadecimal symbols using upper-case symbols from ASCII / Unicode UTF-8. diff --git a/symbols/rune/uppercase_test.go b/symbols/rune/uppercase_test.go index fe6db40..a079474 100644 --- a/symbols/rune/uppercase_test.go +++ b/symbols/rune/uppercase_test.go @@ -3,7 +3,7 @@ package runesymbols_test import ( "testing" - "sourcecode.social/reiver/go-hexadeca/symbols/rune" + "github.com/reiver/go-hexadeca/symbols/rune" ) func TestUpperCase(t *testing.T) {