Skip to content

Commit

Permalink
[#3236] Fix missing word typo in 06.1-actions.mdx (#3237)
Browse files Browse the repository at this point in the history
Closes #3236

The line` this.repeatForever(ctx => {` is now `this.actions.repeatForever(ctx => {`.
  • Loading branch information
mosesintech authored Oct 6, 2024
1 parent 6862eb6 commit 17a49a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/docs/07-actions/06.1-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public Ship extends ex.Actor {
new ex.Vector(75, 80)
];
// spawn at start point
this.repeatForever(ctx => {
this.actions.repeatForever(ctx => {
this.x = path[0].x;
this.y = path[0].y;
// create action queue
Expand Down

0 comments on commit 17a49a3

Please sign in to comment.