Skip to content

Commit 3646c46

Browse files
committed
Rename package
1 parent 560085d commit 3646c46

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Datadog sketches-go
22
Copyright 2018-2020 Datadog, Inc. for original work
3-
GraphMetrics ddsketch-go
3+
GraphMetrics sketches-go
44
Copyright 2021 GraphMetrics for modifications
55

66
This product includes software developed at Datadog (https://www.datadoghq.com/).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ddsketch-go
1+
# sketches-go
22

33
This repo contains a Go implementation of the distributed quantile sketch algorithm
44
DDSketch[1] originally developed by [DataDog](https://github.com/datadog/sketches-go)™. DDSketch has relative-error guarantees for any quantile q in [0, 1].

ddsketch/ddsketch.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"errors"
1010
"math"
1111

12-
"github.com/graphmetrics/ddsketch-go/ddsketch/mapping"
13-
"github.com/graphmetrics/ddsketch-go/ddsketch/store"
12+
"github.com/graphmetrics/sketches-go/ddsketch/mapping"
13+
"github.com/graphmetrics/sketches-go/ddsketch/store"
1414
)
1515

1616
type DDSketch struct {

ddsketch/ddsketch_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"math/rand"
1212
"testing"
1313

14-
"github.com/graphmetrics/ddsketch-go/dataset"
14+
"github.com/graphmetrics/sketches-go/dataset"
1515

1616
fuzz "github.com/google/gofuzz"
1717
"github.com/stretchr/testify/assert"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/graphmetrics/ddsketch-go
1+
module github.com/graphmetrics/sketches-go
22

33
go 1.15
44

0 commit comments

Comments
 (0)