- naming conventions (calling interfaces by what they are)

This commit is contained in:
Emir Pasic
2016-06-22 03:09:48 +02:00
parent 98bde950bc
commit 3b3edfc539
19 changed files with 87 additions and 34 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ import (
)
func assertInterfaceImplementation() {
var _ stacks.Interface = (*Stack)(nil)
var _ stacks.Stack = (*Stack)(nil)
}
type Stack struct {