Skip to content

Commit

Permalink
Minor text changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffeb3 committed Jun 13, 2024
1 parent fcd4da5 commit 308d963
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/shapes/Epicycloid.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class Epicycloid extends Shape {
this.link = "http://mathworld.wolfram.com/Epicycloid.html"
this.linkText = "Wolfram Mathworld"
this.description =
"The clover shape is actually an epicycloid. Imagine two circles, with an outer circle rolling around an inner one. The path created by a point on the outer circle as it rolls is called an epicycloid."
"The clover shape is an epicycloid. Imagine two circles, with an outer circle rolling around an inner one. The path created by a point on the outer circle as it rolls is called an epicycloid."
}

getInitialState() {
Expand Down
2 changes: 1 addition & 1 deletion src/features/shapes/Hypocycloid.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class Star extends Shape {
this.link = "http://mathworld.wolfram.com/Hypocycloid.html"
this.linkText = "Wolfram Mathworld"
this.description =
"The web shape is actually an hypocycloid. Imagine two circles, with an inner circle rolling around inside an outer one. The path created by a point on the inner circle as it rolls is called an hypocycloid."
"The web shape is a hypocycloid. Imagine two circles, with an inner circle rolling around inside an outer one. The path created by a point on the inner circle as it rolls is called a hypocycloid."
}

getInitialState() {
Expand Down
2 changes: 1 addition & 1 deletion src/features/shapes/lsystem/LSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default class LSystem extends Shape {
this.link = "https://en.wikipedia.org/wiki/L-system"
this.linkText = "Wikipedia"
this.description =
"The fractal line writer shape is actually a Lindenmayer (or L) system. L-systems chain symbols together to specify instructions for moving in a 2d space (e.g., turn left or right, walk left or right). When applied recursively, they generate fractal-like patterns."
"The fractal line writer shape is a Lindenmayer (or L) system. L-systems chain symbols together to specify instructions for moving in a 2d space (e.g., turn left or right, walk left or right). When applied recursively, they generate fractal-like patterns."
}

getInitialState() {
Expand Down

0 comments on commit 308d963

Please sign in to comment.