aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/pborman
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pborman')
-rw-r--r--vendor/github.com/pborman/uuid/.travis.yml10
-rw-r--r--vendor/github.com/pborman/uuid/time.go2
-rw-r--r--vendor/github.com/pborman/uuid/version4.go2
3 files changed, 12 insertions, 2 deletions
diff --git a/vendor/github.com/pborman/uuid/.travis.yml b/vendor/github.com/pborman/uuid/.travis.yml
new file mode 100644
index 0000000..3deb4a1
--- /dev/null
+++ b/vendor/github.com/pborman/uuid/.travis.yml
@@ -0,0 +1,10 @@
+language: go
+
+go:
+ - "1.9"
+ - "1.10"
+ - "1.11"
+ - tip
+
+script:
+ - go test -v ./...
diff --git a/vendor/github.com/pborman/uuid/time.go b/vendor/github.com/pborman/uuid/time.go
index 7286824..5c0960d 100644
--- a/vendor/github.com/pborman/uuid/time.go
+++ b/vendor/github.com/pborman/uuid/time.go
@@ -29,7 +29,7 @@ func GetTime() (Time, uint16, error) { return guuid.GetTime() }
// for
func ClockSequence() int { return guuid.ClockSequence() }
-// SetClockSequence sets the clock sequence to the lower 14 bits of seq. Setting to
+// SetClockSeq sets the clock sequence to the lower 14 bits of seq. Setting to
// -1 causes a new sequence to be generated.
func SetClockSequence(seq int) { guuid.SetClockSequence(seq) }
diff --git a/vendor/github.com/pborman/uuid/version4.go b/vendor/github.com/pborman/uuid/version4.go
index 767dd0c..b459d46 100644
--- a/vendor/github.com/pborman/uuid/version4.go
+++ b/vendor/github.com/pborman/uuid/version4.go
@@ -6,7 +6,7 @@ package uuid
import guuid "github.com/google/uuid"
-// NewRandom returns a Random (Version 4) UUID or panics.
+// Random returns a Random (Version 4) UUID or panics.
//
// The strength of the UUIDs is based on the strength of the crypto/rand
// package.