Merge pull request #36 from cez81/fix_typos
Fix typos
diff --git a/uuid_test.go b/uuid_test.go
index cb1cd5c..0387239 100644
--- a/uuid_test.go
+++ b/uuid_test.go
@@ -421,13 +421,13 @@
uuid1 := New()
uuid2 := New()
if uuid1 != uuid2 {
- t.Errorf("execpted duplicates, got %q and %q", uuid1, uuid2)
+ t.Errorf("expected duplicates, got %q and %q", uuid1, uuid2)
}
SetRand(nil)
uuid1 = New()
uuid2 = New()
if uuid1 == uuid2 {
- t.Errorf("unexecpted duplicates, got %q", uuid1)
+ t.Errorf("unexpected duplicates, got %q", uuid1)
}
}