Skip to content

Commit

Permalink
Fix a couple of (historical) obvious-typo bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Tilles committed Apr 14, 2015
1 parent f60a59c commit 8375eb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sailthru.coffee
Expand Up @@ -431,7 +431,7 @@ class SailthruClient
data.when = if data.when and type is 'weekly' or type is 'daily' then data.when else delete data.when
@apiPost 'alert', data, callback

deleteAler: (email, alertId, callback) ->
deleteAlert: (email, alertId, callback) ->
data =
email: email
alert_id: alertId
Expand Down Expand Up @@ -476,7 +476,7 @@ class SailthruClient

# Job API Call
getJobStatus: (jobId, callback) ->
@apiGet 'job', {'job_id': job_id}, callback
@apiGet 'job', {'job_id': jobId}, callback

processJob: (job, options, report_email, postback_url, binary_data_params, callback) ->

Expand Down

0 comments on commit 8375eb5

Please sign in to comment.