Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.

Commit daac921

Browse files
author
Rouven Bühlmann
committed
Streamline jsdoc return statements
1 parent 9078b0d commit daac921

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gulp/tasks/compile-js/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const fancyLog = require('fancy-log');
77
* @param {string} paths.root - The root path
88
* @param {string} paths.src - The src path
99
* @param {string} dir - The project directory path
10-
* @return {string} - The source relative path
10+
* @return {string} The source relative path
1111
*/
1212
exports.getSourceRelativeDir = function({ root, src }, dir) {
1313
return path.relative(src, path.join(root, dir));

gulp/tasks/scaffold/helpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function createNestedDir(targetDir, baseDir) {
3434

3535
/**
3636
* Create a new clasp project
37-
* @return {Promise} - A promise indicating completion
37+
* @return {Promise} A promise indicating completion
3838
*/
3939
function createClaspProject() {
4040
return new Promise((resolve, reject) => {
@@ -49,7 +49,7 @@ function createClaspProject() {
4949

5050
/**
5151
* Clone an existing clasp project
52-
* @return {Promise} - A promise indicating completion
52+
* @return {Promise} A promise indicating completion
5353
*/
5454
function cloneClaspProject() {
5555
return new Promise((resolve, reject) => {

gulp/tasks/scaffold/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { addToProjects, makeProjectFolder, provideClaspProject } = require('./hel
66

77
/**
88
* Give additional information to the available tasks
9-
* @return {Promise} - A promise indicating completion
9+
* @return {Promise} A promise indicating completion
1010
*/
1111
function scaffold() {
1212
if (!projectDir) {

0 commit comments

Comments
 (0)