Skip to content

Commit

Permalink
remove unnessary notes fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CiCi503 committed Apr 13, 2018
1 parent d3fe082 commit b489b0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/client.js
Expand Up @@ -187,7 +187,7 @@ class Client {
};
}

/**
/*!
* GET 请求
*
* @param {String} path 请求路径
Expand All @@ -199,7 +199,7 @@ class Client {
return this.request('GET', path, query, null, headers);
}

/**
/*!
* POST 请求
*
* @param {String} path 请求路径
Expand All @@ -211,7 +211,7 @@ class Client {
return this.request('POST', path, null, body, headers);
}

/**
/*!
* PUT 请求
*
* @param {String} path 请求路径
Expand All @@ -223,7 +223,7 @@ class Client {
return this.request('PUT', path, null, body, headers);
}

/**
/*!
* DELETE 请求
*
* @param {String} path 请求路径
Expand Down

0 comments on commit b489b0d

Please sign in to comment.