Skip to content

Commit

Permalink
Fix comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
howbazaar committed Mar 31, 2016
1 parent c6f1e33 commit 79d71d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fabric.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type fabric struct {
vlans []*vlan
}

// Id implements Fabric.
// ID implements Fabric.
func (f *fabric) ID() int {
return f.id
}
Expand All @@ -32,7 +32,7 @@ func (f *fabric) Name() string {
return f.name
}

// Name implements Fabric.
// ClassType implements Fabric.
func (f *fabric) ClassType() string {
return f.classType
}
Expand Down
2 changes: 1 addition & 1 deletion vlan.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type vlan struct {
secondaryRack string
}

// Id implements VLAN.
// ID implements VLAN.
func (v *vlan) ID() int {
return v.id
}
Expand Down

0 comments on commit 79d71d8

Please sign in to comment.