Skip to content

Commit d2fcf35

Browse files
committed
Updates docs with options removed where necessary
1 parent 0449ab2 commit d2fcf35

File tree

5 files changed

+0
-15
lines changed

5 files changed

+0
-15
lines changed

src/Analytics.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ import CoreManager from './CoreManager';
4848
* having happened.
4949
* @param {Object} dimensions The dictionary of information by which to
5050
* segment this event.
51-
* @param {Object} options
5251
* @return {Promise} A promise that is resolved when the round-trip
5352
* to the server completes.
5453
*/

src/Cloud.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ export function run(
6363
* Gets data for the current set of cloud jobs.
6464
* @method getJobsData
6565
* @name Parse.Cloud.getJobsData
66-
* @param {Object} options
6766
* @return {Promise} A promise that will be resolved with the result
6867
* of the function.
6968
*/
@@ -80,7 +79,6 @@ export function getJobsData(): Promise {
8079
* @name Parse.Cloud.startJob
8180
* @param {String} name The function name.
8281
* @param {Object} data The parameters to send to the cloud function.
83-
* @param {Object} options
8482
* @return {Promise} A promise that will be resolved with the result
8583
* of the function.
8684
*/

src/ParseConfig.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ class ParseConfig {
7373
/**
7474
* Gets a new configuration object from the server.
7575
* @static
76-
* @param {Object} options
7776
* @return {Promise} A promise that is resolved with a newly-created
7877
* configuration object when the get completes.
7978
*/

src/ParseGeoPoint.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,6 @@ class ParseGeoPoint {
193193
/**
194194
* Creates a GeoPoint with the user's current location, if available.
195195
* Calls options.success with a new GeoPoint instance or calls options.error.
196-
197-
* @param {Object} options An object with success and error callbacks.
198196
* @static
199197
*/
200198
static current() {

src/ParseSchema.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -199,15 +199,6 @@ class ParseSchema {
199199
/**
200200
* Removes all objects from a Schema (class) in Parse.
201201
* EXERCISE CAUTION, running this will delete all objects for this schema and cannot be reversed
202-
*
203-
* @param {Object} options
204-
* Valid options are:<ul>
205-
* <li>useMasterKey: In Cloud Code and Node only, causes the Master Key to
206-
* be used for this request.
207-
* <li>sessionToken: A valid session token, used for making a request on
208-
* behalf of a specific user.
209-
* </ul>
210-
*
211202
* @return {Promise} A promise that is resolved with the result when
212203
* the query completes.
213204
*/

0 commit comments

Comments
 (0)