Skip to content

Commit 7977dc0

Browse files
committed
1 parent 360b7df commit 7977dc0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/YoungPersonsGuideToProgrammingMinecraft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@ var myskyscraper = function(floors) {
925925
}
926926
return this.move('myskyscraper'); // return to where we started
927927
};
928-
var Drone = require('../drone/drone.js').Drone;
928+
var Drone = require('../drone/drone').Drone;
929929
Drone.extend('myskyscraper',myskyscraper);
930930
```
931931

src/docs/templates/ypgpm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ var myskyscraper = function(floors) {
889889
}
890890
return this.move('myskyscraper'); // return to where we started
891891
};
892-
var Drone = require('../drone/drone.js').Drone;
892+
var Drone = require('../drone/drone').Drone;
893893
Drone.extend('myskyscraper',myskyscraper);
894894
```
895895

0 commit comments

Comments
 (0)