From ec217a58f1d0853031d55350740ce8908d522cb2 Mon Sep 17 00:00:00 2001 From: carlad Date: Tue, 19 Apr 2016 18:29:46 +0200 Subject: [PATCH] correct typo --- lib/travis/api/v3.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/travis/api/v3.rb b/lib/travis/api/v3.rb index 8a7cb55f..59add8e6 100644 --- a/lib/travis/api/v3.rb +++ b/lib/travis/api/v3.rb @@ -36,7 +36,7 @@ module Travis RequestLimitReached = ClientError .create('request limit reached for resource', status: 429) AlreadySyncing = ClientError .create('sync already in progress', status: 409) AlreadyRunning = ClientError .create('job already running', status: 409) - NotCancelable = ClientError .create('job is not running, cannot canel', status: 409) + NotCancelable = ClientError .create('job is not running, cannot cancel', status: 409) MethodNotAllowed = ClientError .create('method not allowed', status: 405) end end