Skip to content

Commit

Permalink
lern → learn
Browse files Browse the repository at this point in the history
  • Loading branch information
KopfKrieg committed Jul 17, 2015
1 parent ecb0641 commit e3c6854
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
test: test_neural test_persist test_lern test_engine
test: test_neural test_persist test_learn test_engine

test_persist:
@( go test ./persist/ )
Expand Down
2 changes: 1 addition & 1 deletion engine/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type request []interface{}
func New(n *neural.Network) Engine {
e := &engine{
Network: n,
LearnChannel: make(chan *request, lernChannelCapacity),
LearnChannel: make(chan *request, learnChannelCapacity),
CalculateChannel: make(chan *request, calcChannelCapacity),
DumpChannel: make(chan *request, dumpChannelCapacity),
}
Expand Down

0 comments on commit e3c6854

Please sign in to comment.