Skip to content

Commit ba0c64a

Browse files
authored
some minor fixes
1 parent 9099bac commit ba0c64a

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/shape/curves.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ function curves(p5, fn){
501501
*
502502
* background(200);
503503
*
504-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
504+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
505505
* splineProperty('ends', EXCLUDE);
506506
*
507507
* // Draw a black spline curve.
@@ -550,7 +550,7 @@ function curves(p5, fn){
550550
* function draw() {
551551
* background(200);
552552
*
553-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
553+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
554554
* splineProperty('ends', EXCLUDE);
555555
*
556556
* // Draw a black spline curve.
@@ -605,7 +605,7 @@ function curves(p5, fn){
605605
*
606606
* background('skyblue');
607607
*
608-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
608+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
609609
* splineProperty('ends', EXCLUDE);
610610
*
611611
* // Draw the red balloon.
@@ -631,7 +631,7 @@ function curves(p5, fn){
631631
* function draw() {
632632
* background('skyblue');
633633
*
634-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
634+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
635635
* splineProperty('ends', EXCLUDE);
636636
*
637637
* // Rotate around the y-axis.
@@ -711,7 +711,7 @@ function curves(p5, fn){
711711
*
712712
* background(200);
713713
*
714-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
714+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
715715
* splineProperty('ends', EXCLUDE);
716716
*
717717
* // Set the coordinates for the curve's anchor and control points.
@@ -762,7 +762,7 @@ function curves(p5, fn){
762762
* function draw() {
763763
* background(200);
764764
*
765-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
765+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
766766
* splineProperty('ends', EXCLUDE);
767767
*
768768
* // Set the coordinates for the curve's anchor and control points.
@@ -843,7 +843,7 @@ function curves(p5, fn){
843843
*
844844
* background(200);
845845
*
846-
* // Exclude the endsskip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
846+
* // Exclude the ends and skip the outer spans (p0→p1 and p2→p3) so only the middle span (p1→p2) is drawn.
847847
* splineProperty('ends', EXCLUDE);
848848
*
849849
* // Set the coordinates for the curve's anchor and control points.

0 commit comments

Comments
 (0)