Browse Source

s/detele/delete

Renée Kooi 6 years ago
parent
commit
45e76e7bca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/server/RequestClient.js

+ 1 - 1
src/server/RequestClient.js

@@ -95,7 +95,7 @@ module.exports = class RequestClient {
       // @todo validate response status before calling json
       .then((res) => res.json())
       .catch((err) => {
-        throw new Error(`Could not detele ${this._getUrl(path)}. ${err}`)
+        throw new Error(`Could not delete ${this._getUrl(path)}. ${err}`)
       })
   }
 }