diff --git a/src/neuron.hxx b/src/neuron.hxx
index 5dee845..c852ee7 100644
--- a/src/neuron.hxx
+++ b/src/neuron.hxx
@@ -98,7 +98,7 @@
second, and so on, until @c Hl+1 contains the weights
from layer @c l to the output @c O.
- The output vector is then calculatd as:
+ The output vector is then calculated as:
O = I × H1 × H2 × H… × Hl+1
@code
@@ -106,10 +106,10 @@
const size_type o(2);
NeuroNet net;
Matrix<1, i> input(1.0, 2.0, 0.0, -1.0);
- Matrix<1, o> output = net.propagate(input);
+ Matrix<1, o> output = net(input);
@endcode
- @section beuro-backward Back Propagation
+ @section neuro-backward Back Propagation
*/