Skip to content
This repository has been archived by the owner on Jul 6, 2021. It is now read-only.

Incorrect code in documentation #19

Closed
aeisenberg opened this issue Jan 3, 2013 · 1 comment
Closed

Incorrect code in documentation #19

aeisenberg opened this issue Jan 3, 2013 · 1 comment
Labels

Comments

@aeisenberg
Copy link

Originally posted here: qunitjs/qunit#388 (comment)

On this page in the documentation: http://api.qunitjs.com/QUnit.moduleDone/

The code snippet looks like this;

QUnit.moduleStart(function( details ) {
    console.log( "Finished running: ", details.name, "Failed/total: ", details.failed, details.total );
});

Shouldn't it be this:

QUnit.moduleDone(function( details ) {
    console.log( "Finished running: ", details.name, "Failed/total: ", details.failed, details.total );
});
@jzaefferer
Copy link
Member

Fixed and deployed. Thanks!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
2 participants