Skip to content

Commit

Permalink
s/reciever/receiver/
Browse files Browse the repository at this point in the history
  • Loading branch information
284km committed Jul 28, 2019
1 parent 489874d commit 7820257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/binder/main.go
Expand Up @@ -80,8 +80,8 @@ func allArgs(f *ast.FieldList) []argPair {
// Binding holds context about a struct that represents a goby class.
type Binding struct {
ClassName string
ClassMethods []*ast.FuncDecl // Any method defined without a pointer reciever is a class method func (Class) myFunc
InstanceMethods []*ast.FuncDecl // Any method defined with a pointer reciever is an instance method func (c *Class) myFunc
ClassMethods []*ast.FuncDecl // Any method defined without a pointer receiver is a class method func (Class) myFunc
InstanceMethods []*ast.FuncDecl // Any method defined with a pointer receiver is an instance method func (c *Class) myFunc

}

Expand Down

0 comments on commit 7820257

Please sign in to comment.