From bfec89940ee8f86bd0ecb8a8a52482066bbdb460 Mon Sep 17 00:00:00 2001 From: Andrew Magana Date: Wed, 30 Sep 2020 11:29:44 -0400 Subject: [PATCH] Fixed a typo that has bothered me for too long. --- lib/alks-api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/alks-api.js b/lib/alks-api.js index 27088b6..d55dfdc 100644 --- a/lib/alks-api.js +++ b/lib/alks-api.js @@ -566,7 +566,7 @@ exports.deleteLongTermKey = function(account, auth, iamUserName, opts, callback) return callback(err); } else if(results.statusCode !== 200){ - log('api:deleteLongTermKey', 'receieved bad response: ' + endpoint, results.body); + log('api:deleteLongTermKey', 'received bad response: ' + endpoint, results.body); if(results.body.errors && results.body.errors.length){ return callback(new Error(results.body.errors[0]), null);