Skip to content

Commit 66fb3ae

Browse files
committed
fixed module naming
1 parent a5c9d28 commit 66fb3ae

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

encode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"reflect"
77
"runtime"
88

9-
v2 "github.com/JAicewizard/tt/v2"
9+
v2 "github.com/jaicewizard/tt/v2"
1010
)
1111

1212
const (

size.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"runtime"
66

7-
v2 "github.com/JAicewizard/tt/v2"
7+
v2 "github.com/jaicewizard/tt/v2"
88
)
99

1010
//TODO: maybe dont copy all the data over etc, it might be faster do just return the length and use that

tt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"errors"
66

7-
v2 "github.com/JAicewizard/tt/v2"
7+
v2 "github.com/jaicewizard/tt/v2"
88
)
99

1010
/*

tt_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"testing"
1414
"time"
1515

16-
v1 "github.com/JAicewizard/tt/v1"
1716
"github.com/go-test/deep"
17+
v1 "github.com/jaicewizard/tt/v1"
1818
)
1919

2020
var testData = Data{

v1.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ package tt
33
import (
44
"errors"
55

6-
v1 "github.com/JAicewizard/tt/v1"
6+
v1 "github.com/jaicewizard/tt/v1"
77
)
88

9-
109
func Decodev1(b []byte, d *Data) (err error) {
1110
vlen := int(b[len(b)-1])
1211

v2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/binary"
55
"errors"
66

7-
v2 "github.com/JAicewizard/tt/v2"
7+
v2 "github.com/jaicewizard/tt/v2"
88
)
99

1010
func Decodev2(b []byte, d *Data) (err error) {

v3.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"reflect"
88
"runtime"
99

10-
v3 "github.com/JAicewizard/tt/v3"
10+
v3 "github.com/jaicewizard/tt/v3"
1111
)
1212

1313
func Encodev3(d interface{}, values *bytes.Buffer) {

0 commit comments

Comments
 (0)