From 4240b134e6dc3542646d737f93f8957177de5782 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Sat, 17 May 2014 22:08:31 +0400 Subject: [PATCH] Fix spelling. --- deb/package_collection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deb/package_collection.go b/deb/package_collection.go index 5e5a8939..93c80a9c 100644 --- a/deb/package_collection.go +++ b/deb/package_collection.go @@ -160,7 +160,7 @@ func (collection *PackageCollection) Update(p *Package) error { if err == nil { // if .Files is different, consider to be conflict if p.FilesHash != existing.FilesHash { - return fmt.Errorf("unable to save: %s, conflict with existing packge", p) + return fmt.Errorf("unable to save: %s, conflict with existing package", p) } // ok, .Files are the same, but maybe some meta-data is different, proceed to saving } else {