docs(help) comments: multiline -> one line

This commit is contained in:
coderaiser 2018-04-30 17:00:18 +03:00
parent 4a78738b2a
commit da25d21898
2 changed files with 10 additions and 10 deletions

10
HELP.md
View file

@ -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);

View file

@ -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);