Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong problem description for Exercise 3 #117

Closed
DCrow opened this issue Jun 20, 2017 · 1 comment
Closed

Wrong problem description for Exercise 3 #117

DCrow opened this issue Jun 20, 2017 · 1 comment

Comments

@DCrow
Copy link

DCrow commented Jun 20, 2017

This description is wrong:

Your module could look like:
module.exports = function (databaseDir, callback) {
    var result = []
    // your code...
    result.push()
    // more code...
    callback(result)
}

Original description, asks that callback(result) is invoked using one parameter, but it actually requires two callback(error, result)

Description should be:

Your module could look like:
module.exports = function (databaseDir, callback) {
    var result = []
    // your code...
    result.push()
    // more code...
    callback(error, result)
}
@martinheidegger
Copy link
Contributor

Duplicate of #96

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants