-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var path = require( 'path' ), | ||
verify = require( 'adventure-verify' ), | ||
tools = require( '../../library/tools' ); | ||
|
||
exports.problem = tools.mdProblem( { | ||
mdSource: path.join( __dirname, 'feedback.md' ), | ||
pdfName: 'feedback.pdf' | ||
} ); | ||
exports.solution = 'Thank you!'; | ||
|
||
exports.verify = verify( { modeReset: true }, function checker( args, t ) { | ||
|
||
t.end(); | ||
|
||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Improve this adventure! | ||
|
||
Thank you for downloading this adventure! | ||
|
||
*Did you like it? Did you miss something? Do you have ideas for new adventures? Did you expect something else?* | ||
|
||
Feedback about this adventure is very much appreciated. Be it positive or negative, any comment that helps | ||
improving the exercises is welcome. It also gives me a better understanding of whether it is worth continuing | ||
those adventures. | ||
|
||
[Please follow this link](https://github.com/Granjow/graphs-with-javascript/issues/1) to share your opinion, | ||
or feel free to open a new issue. | ||
|
||
**Thank you!** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters