Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 86cae6b

Browse files
committed
fix errant shut down references; from manuel@kiessling.net
1 parent 994b9c0 commit 86cae6b

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

docs/machines_restart.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="machin
2626
</nav>
2727

2828
<div id="main">
29-
29+
3030
<h1 class="page-title">machines/restart.js</h1>
31-
3231

33-
3432

3533

3634

37-
35+
36+
37+
3838
<section>
3939
<article>
4040
<pre class="prettyprint source linenums"><code>'use strict';
@@ -49,7 +49,7 @@ <h1 class="page-title">machines/restart.js</h1>
4949
* this action will request the machine be restarted again.
5050
* This action can only be performed by the user who owns the machine.
5151
* @param {object} params - Machine restart parameters
52-
* @param {string} params.machineId - Id of the machine to shut down
52+
* @param {string} params.machineId - Id of the machine to restart
5353
* @param {function} cb - Node-style error-first callback function
5454
* @example
5555
* paperspace.machines.restart({

docs/machines_start.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="machin
2626
</nav>
2727

2828
<div id="main">
29-
29+
3030
<h1 class="page-title">machines/start.js</h1>
31-
3231

33-
3432

3533

3634

37-
35+
36+
37+
3838
<section>
3939
<article>
4040
<pre class="prettyprint source linenums"><code>'use strict';
@@ -49,7 +49,7 @@ <h1 class="page-title">machines/start.js</h1>
4949
* this action is a no-op. If the machine is off, it will be booted up.
5050
* This action can only be performed by the user who owns the machine.
5151
* @param {object} params - Machine start parameters
52-
* @param {string} params.machineId - Id of the machine to shut down
52+
* @param {string} params.machineId - Id of the machine to start
5353
* @param {function} cb - Node-style error-first callback function
5454
* @example
5555
* paperspace.machines.start({

docs/machines_update.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="machin
2626
</nav>
2727

2828
<div id="main">
29-
29+
3030
<h1 class="page-title">machines/update.js</h1>
31-
3231

33-
3432

3533

3634

37-
35+
36+
37+
3838
<section>
3939
<article>
4040
<pre class="prettyprint source linenums"><code>'use strict';
@@ -47,7 +47,7 @@ <h1 class="page-title">machines/update.js</h1>
4747
* @method update
4848
* @description Update attributes of a machine.
4949
* @param {object} params - Machine update parameters
50-
* @param {string} params.machineId - Id of the machine to shut down
50+
* @param {string} params.machineId - Id of the machine to update
5151
* @param {string} [params.machineName] - New name for the machine
5252
* @param {number} [params.shutdownTimeoutInHours] - Number of hours before machine is shutdown if no one is logged in via the Paperspace client
5353
* @param {boolean} [params.shutdownTimeoutForces] - Force shutdown at shutdown timeout, even if there is a Paperspace client connection

lib/machines/restart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var assign = require('lodash.assign');
1010
* this action will request the machine be restarted again.
1111
* This action can only be performed by the user who owns the machine.
1212
* @param {object} params - Machine restart parameters
13-
* @param {string} params.machineId - Id of the machine to shut down
13+
* @param {string} params.machineId - Id of the machine to restart
1414
* @param {function} cb - Node-style error-first callback function
1515
* @example
1616
* paperspace.machines.restart({

lib/machines/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var assign = require('lodash.assign');
1010
* this action is a no-op. If the machine is off, it will be booted up.
1111
* This action can only be performed by the user who owns the machine.
1212
* @param {object} params - Machine start parameters
13-
* @param {string} params.machineId - Id of the machine to shut down
13+
* @param {string} params.machineId - Id of the machine to start
1414
* @param {function} cb - Node-style error-first callback function
1515
* @example
1616
* paperspace.machines.start({

lib/machines/update.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var assign = require('lodash.assign');
88
* @method update
99
* @description Update attributes of a machine.
1010
* @param {object} params - Machine update parameters
11-
* @param {string} params.machineId - Id of the machine to shut down
11+
* @param {string} params.machineId - Id of the machine to update
1212
* @param {string} [params.machineName] - New name for the machine
1313
* @param {number} [params.shutdownTimeoutInHours] - Number of hours before machine is shutdown if no one is logged in via the Paperspace client
1414
* @param {boolean} [params.shutdownTimeoutForces] - Force shutdown at shutdown timeout, even if there is a Paperspace client connection

0 commit comments

Comments
 (0)