fixed references

This commit is contained in:
daniel-gil 2019-04-12 11:39:41 +02:00
parent 3e69a488f6
commit 8a6e52a737
9 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
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:

View File

@ -1,11 +1,11 @@
# intervals [![Build Status](https://travis-ci.org/centraldereservas/intervals.svg?branch=master)](https://travis-ci.org/centraldereservas/intervals) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/centraldereservas/intervals?status.svg)](https://godoc.org/github.com/centraldereservas/intervals)
# intervals [![Build Status](https://travis-ci.org/daniel-gil/intervals.svg?branch=master)](https://travis-ci.org/daniel-gil/intervals) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/daniel-gil/intervals?status.svg)](https://godoc.org/github.com/daniel-gil/intervals)
Provides a helper to work with integer intervals detecting gaps, merged and overlapped sections.
## Installation
```sh
go get github.com/centraldereservas/intervals
go get github.com/daniel-gil/intervals
```
## 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].
[mit]: https://github.com/centraldereservas/intervals/blob/master/LICENSE
[doc]: https://godoc.org/github.com/centraldereservas/intervals
[mit]: https://github.com/daniel-gil/intervals/blob/master/LICENSE
[doc]: https://godoc.org/github.com/daniel-gil/intervals

View File

@ -4,7 +4,7 @@ import (
"fmt"
"math"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
type demo struct {

View File

@ -6,7 +6,7 @@ import (
"log"
"os"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
const (

View File

@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
func initIntervalsForDemo001() intervals.Intervals {

View File

@ -3,7 +3,7 @@ package intervals_test
import (
"testing"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
func TestGaps(t *testing.T) {

View File

@ -3,7 +3,7 @@ package intervals_test
import (
"testing"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
func TestMerge(t *testing.T) {

View File

@ -3,7 +3,7 @@ package intervals_test
import (
"testing"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
func TestOverlapped(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"github.com/centraldereservas/intervals"
"github.com/daniel-gil/intervals"
)
func TestReport(t *testing.T) {