Skip to content

Commit bcf7232

Browse files
committed
fix typo in comment
1 parent 90ce9a3 commit bcf7232

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Language/math.pod6

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -308,14 +308,14 @@ To fully understand what is going on, let me explain it step by step.
308308
First we load the module that make
309309
the calculations: L<C<Math::Model>|https://github.com/moritz/Math-Model>.
310310
311-
=begin code :skip-test<Snippet for explanantion purposes>
311+
=begin code :skip-test<Snippet for explanation purposes>
312312
use Math::Model;
313313
=end code
314314
=end item
315315
316316
=begin item
317317
We create the model to add all the information in it.
318-
=begin code :skip-test<Snippet for explanantion purposes>
318+
=begin code :skip-test<Snippet for explanation purposes>
319319
my $m = Math::Model.new(
320320
=end code
321321
=end item
@@ -325,7 +325,7 @@ We declare the derivatives that are in our model. In this case, if
325325
you remember our equation, we have our variable I<x> and its derivative
326326
I<x'> (usually know as the velocity).
327327
328-
=begin code :skip-test<Snippet for explanantion purposes>
328+
=begin code :skip-test<Snippet for explanation purposes>
329329
derivatives => {
330330
velocity => 'x',
331331
},
@@ -338,7 +338,7 @@ formulas for the derivatives that are not also integration variables
338338
(in this case, only I<x>), and for other variables we use in the formulas
339339
(the growth rate).
340340
341-
=begin code :skip-test<Snippet for explanantion purposes>
341+
=begin code :skip-test<Snippet for explanation purposes>
342342
variables => {
343343
velocity => { $:growth_constant * $:x},
344344
growth_constant => { 1 }, # basal growth rate
@@ -352,7 +352,7 @@ Finally we declare our initial conditions and use I<captures> to
352352
tell L<C<Math::Model>|https://github.com/moritz/Math-Model> which
353353
variable or variables to record while the simulation is running.
354354
355-
=begin code :skip-test<Snippet for explanantion purposes>
355+
=begin code :skip-test<Snippet for explanation purposes>
356356
initials => {
357357
x => 3,
358358
},

0 commit comments

Comments
 (0)