Skip to content

Commit

Permalink
Adopt JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
matz3 committed Mar 9, 2020
1 parent ae5d32d commit c151c9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ui5Framework/AbstractResolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class AbstractResolver {
* @param {*} options options
* @param {string} options.version version
* @param {string} [options.cwd=process.cwd()] cwd
* @param {string} [options.ui5HomeDir="~/.ui5"] UI5 home dir
* @param {string} [options.ui5HomeDir="~/.ui5"] UI5 home dir. Relative to `process.cwd()`
*/
constructor({cwd, version, ui5HomeDir}) {
if (new.target === AbstractResolver) {
Expand Down
2 changes: 1 addition & 1 deletion lib/ui5Framework/Openui5Resolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Openui5Resolver extends AbstractResolver {
* @param {*} options options
* @param {string} options.version version
* @param {string} [options.cwd=process.cwd()] cwd
* @param {string} [options.ui5HomeDir=os.homedir()] UI5 home dir
* @param {string} [options.ui5HomeDir="~/.ui5"] UI5 home dir. Relative to `process.cwd()`
*/
constructor(options) {
super(options);
Expand Down
2 changes: 1 addition & 1 deletion lib/ui5Framework/Sapui5Resolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Sapui5Resolver extends AbstractResolver {
* @param {*} options options
* @param {string} options.version version
* @param {string} [options.cwd=process.cwd()] cwd
* @param {string} [options.ui5HomeDir=os.homedir()] UI5 home dir
* @param {string} [options.ui5HomeDir="~/.ui5"] UI5 home dir. Relative to `process.cwd()`
*/
constructor(options) {
super(options);
Expand Down

0 comments on commit c151c9d

Please sign in to comment.