Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default class Layer {
return Layer.connectionType.ONE_TO_ONE;
}

// clears all the neuorns in the layer
// clears all the neurons in the layer
clear() {
for (var id in this.list) {
var neuron = this.list[id];
Expand Down Expand Up @@ -216,4 +216,4 @@ export default class Layer {
}
return this;
}
}
}