fix jsdoc param types

This commit is contained in:
Alexander Zeitler 2017-08-24 16:52:24 +02:00
parent 45b4b3057f
commit 04a53032dc
2 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ const logStandards = function (standards) {
/** /**
* @param {object} options * @param {object} options
* @param {boolean} options.log * @param {boolean} options.log
* @param {cwd} options.cwd * @param {string} options.cwd
*/ */
const up = function (options) { const up = function (options) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@ -47,7 +47,7 @@ const up = function (options) {
/** /**
* @param {object} options * @param {object} options
* @param {boolean} options.log * @param {boolean} options.log
* @param {cwd} options.cwd * @param {string} options.cwd
*/ */
const down = function (options) { const down = function (options) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@ -99,7 +99,7 @@ const stop = function (options) {
/** /**
* @param {object} options * @param {object} options
* @param {boolean} options.log * @param {boolean} options.log
* @param {cwd} options.cwd * @param {string} options.cwd
*/ */
const kill = function (options) { const kill = function (options) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {

View file

@ -1,6 +1,6 @@
{ {
"name": "docker-compose", "name": "docker-compose",
"version": "0.3.0", "version": "0.3.1",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "./node_modules/tape/bin/tape test", "test": "./node_modules/tape/bin/tape test",