Skip to content

Commit

Permalink
Few updates to documentation and syntax cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
Johanndutoit committed Jun 30, 2016
1 parent 078c343 commit 678c2d0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
4 changes: 0 additions & 4 deletions README.md
Expand Up @@ -31,10 +31,6 @@ Then you are able to execute the utility using:
./index --help
```

## Under active development

We aim to have a version ready for production use end of June 2016. In the mean time feel free to contribute.

## Terminal Usage

```bash
Expand Down
3 changes: 2 additions & 1 deletion lang/en.json
Expand Up @@ -3,5 +3,6 @@
"ERROR_INVALID_DOMAIN": "Invalid Domain",
"ERROR_IP_LOCALHOST": "Cannot test localhost / loopback address",
"ERROR_IP_LOCALNET": "Cannot test local network",
"ERROR_CALLBACK_REQUIRED": "Callback is required but not found"
"ERROR_CALLBACK_REQUIRED": "Callback is required but not found",
"ERROR_ALREADY_STARTED": "Report has already been started"
}
2 changes: 1 addition & 1 deletion lib/cli.js
Expand Up @@ -40,7 +40,7 @@ Client.commands = {
connect: require('./commands/connect'),
disconnect: require('./commands/disconnect'),
websites: require('./commands/websites'),
website: require('./commands/website')
website: require('./commands/website')

};

Expand Down
2 changes: 1 addition & 1 deletion samples/test.site.js
@@ -1,5 +1,5 @@
var passmarked = require('passmarked');
var report = passmarked.createReport({
var report = passmarked.create({

url: 'http://example.com',
token: '<token>',
Expand Down
2 changes: 1 addition & 1 deletion samples/test.url.js
@@ -1,6 +1,6 @@
var passmarked = require('passmarked');
// create and run a report, waiting for it to finish
var report = passmarked.createReport({
var report = passmarked.create({

url: 'http://example.com',
token: '<token>'
Expand Down

0 comments on commit 678c2d0

Please sign in to comment.