From da25d21898cfa19bb23293c6dafec690a4efe84f Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 30 Apr 2018 17:00:18 +0300 Subject: [PATCH] docs(help) comments: multiline -> one line --- HELP.md | 10 +++++----- README.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/HELP.md b/HELP.md index 3f42f2d3..c706e084 100644 --- a/HELP.md +++ b/HELP.md @@ -486,7 +486,7 @@ const socket = io.listen(server, { }); const config = { - prefix /* base URL or function which returns base URL (optional) */ + prefix // base URL or function which returns base URL (optional) }; const plugins = [ @@ -507,10 +507,10 @@ const modules = { }; app.use(cloudcmd({ - socket, /* used by Config, Edit (optional) and Console (required) */ - config, /* config data (optional) */ - plugins, /* optional */ - modules, /* optional */ + socket, // used by Config, Edit (optional) and Console (required) + config, // config data (optional) + plugins, // optional + modules, // optional })); server.listen(port); diff --git a/README.md b/README.md index e173caac..5998d0a8 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ const socket = io.listen(server, { }); const config = { - prefix /* base URL or function which returns base URL (optional) */ + prefix // base URL or function which returns base URL (optional) }; const plugins = [ @@ -111,10 +111,10 @@ const modules = { }; app.use(cloudcmd({ - socket, /* used by Config, Edit (optional) and Console (required) */ - config, /* config data (optional) */ - plugins, /* optional */ - modules, /* optional */ + socket, // used by Config, Edit (optional) and Console (required) + config, // config data (optional) + plugins, // optional + modules, // optional })); server.listen(port);