fixed references
This commit is contained in:
parent
3e69a488f6
commit
8a6e52a737
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2018 centraldereservas.com
|
Copyright (c) 2018 daniel-gil
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
# intervals [](https://travis-ci.org/centraldereservas/intervals) [](https://opensource.org/licenses/MIT) [](https://godoc.org/github.com/centraldereservas/intervals)
|
# intervals [](https://travis-ci.org/daniel-gil/intervals) [](https://opensource.org/licenses/MIT) [](https://godoc.org/github.com/daniel-gil/intervals)
|
||||||
|
|
||||||
Provides a helper to work with integer intervals detecting gaps, merged and overlapped sections.
|
Provides a helper to work with integer intervals detecting gaps, merged and overlapped sections.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
go get github.com/centraldereservas/intervals
|
go get github.com/daniel-gil/intervals
|
||||||
```
|
```
|
||||||
|
|
||||||
## Motivation
|
## Motivation
|
||||||
@ -161,5 +161,5 @@ The next image is another example where `lowInclusive` is `true` but `highInclus
|
|||||||
|
|
||||||
This project is under the [MIT License][mit].
|
This project is under the [MIT License][mit].
|
||||||
|
|
||||||
[mit]: https://github.com/centraldereservas/intervals/blob/master/LICENSE
|
[mit]: https://github.com/daniel-gil/intervals/blob/master/LICENSE
|
||||||
[doc]: https://godoc.org/github.com/centraldereservas/intervals
|
[doc]: https://godoc.org/github.com/daniel-gil/intervals
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
type demo struct {
|
type demo struct {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
func initIntervalsForDemo001() intervals.Intervals {
|
func initIntervalsForDemo001() intervals.Intervals {
|
||||||
|
@ -3,7 +3,7 @@ package intervals_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGaps(t *testing.T) {
|
func TestGaps(t *testing.T) {
|
||||||
|
@ -3,7 +3,7 @@ package intervals_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMerge(t *testing.T) {
|
func TestMerge(t *testing.T) {
|
||||||
|
@ -3,7 +3,7 @@ package intervals_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestOverlapped(t *testing.T) {
|
func TestOverlapped(t *testing.T) {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/centraldereservas/intervals"
|
"github.com/daniel-gil/intervals"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestReport(t *testing.T) {
|
func TestReport(t *testing.T) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user