Browse Source

Merge pull request #24 from dustinblackman/fix/spelling

Fix spelling
pull/26/head
Brett Langdon 10 years ago
parent
commit
d3040f4299
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/api/monitor.js

+ 2
- 2
lib/api/monitor.js View File

@ -44,7 +44,7 @@ function create(type, query, properties, callback){
if(properties.name){
params.body.name = properties.name;
}
if(properties.messsage){
if(properties.message){
params.body.message = properties.message;
}
if(typeof properties.options === "object"){
@ -169,7 +169,7 @@ function update(monitorId, query, properties, callback){
if(properties.name){
params.body.name = properties.name;
}
if(properties.messsage){
if(properties.message){
params.body.message = properties.message;
}
if(typeof properties.options === "object"){


Loading…
Cancel
Save