At the README this is wrong: ``` javascript var phantom=require('node-phantom'); phantom.create(function(err,ph) { ``` The correct is: ``` javascript var phantom=require('node-phantom'); phantom.create(function(ph, options) { ```
At the README this is wrong:
The correct is: