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) 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:

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. 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

View File

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

View File

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

View File

@ -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 {

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {