fix some typos

This commit is contained in:
Scott Richmond 2024-12-01 20:43:21 -05:00
parent 0ec2b1ec11
commit 71446981b6

View File

@ -587,7 +587,7 @@ Having put `spingon!` into motion, how do you make it stop at a stage of your ch
You need to have a way of telling it how to stop. You need to have a way of telling it how to stop.
That's another characteristic to include as an argument. That's another characteristic to include as an argument.
Look at the following modification to `spingon!`. Look at the following modification to `spingon!`.
Review the conditional commands in Ludus. Review the conditional forms in Ludus.
`if ::something:: then ::something:: else ::something::` is such a conditional. `if ::something:: then ::something:: else ::something::` is such a conditional.
Using the `if` form, everything becomes very tidy. Using the `if` form, everything becomes very tidy.
@ -598,7 +598,7 @@ fn spingon! (n, edge, angle, growth, times) -> {
& This is the conditional stopper. & This is the conditional stopper.
else { else {
ngon! (n, edge) ngon! (n, edge)
rt! (angle) right! (angle)
spingon! (n, mult (edge, growth), angle, growth, dec (times)) spingon! (n, mult (edge, growth), angle, growth, dec (times))
& Note the new argument above. & Note the new argument above.
} }
@ -790,7 +790,7 @@ The two amounts, `angle` and `edge`, are still unknown.
To figure these bits will require a little geometry and trigonometry. To figure these bits will require a little geometry and trigonometry.
We might as well use this opportunity to review all the bits and pieces of polygons. We might as well use this opportunity to review all the bits and pieces of polygons.
### The Geometry of CNGONs ### The Geometry of `cngon`s
Use the following two diagrams in conjunction with the word and equation descriptions. Use the following two diagrams in conjunction with the word and equation descriptions.
{{Figure 11: Geometry of `cngon`s. Bottom of p. 28.}} {{Figure 11: Geometry of `cngon`s. Bottom of p. 28.}}