Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Commit

Permalink
Fixing minor documentation issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdegges committed Aug 2, 2016
1 parent 66cd6d6 commit dda8d6e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/resource/Account.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var utils = require('../utils');
*
* @param {Object} accountResource
*
* The JSON representation of this resource, retrieved the Stormpath REST API.
* The JSON representation of this resource.
*/
function Account(data) {
Account.super_.apply(this, arguments);
Expand Down
6 changes: 3 additions & 3 deletions lib/resource/CustomData.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var RESERVED_FIELDS = ['createdAt', 'modifiedAt',
*
* @param {Object} customDataResource
*
* The JSON representation of this resource, retrieved the Stormpath REST API.
* The JSON representation of this resource.
*
* @example
* account.getCustomData(function(err, customData){
Expand Down Expand Up @@ -115,9 +115,9 @@ CustomData.prototype.remove = function removeCustomDataField(fieldName){
/**
* Save changes to this custom data resource.
*
* @param {Function} callback
* @param {Function} callback
* The function to call when the save operation is complete. Will be called
* with the parameters (err,updatedCustomDataResource).
* with the parameters (err, updatedCustomDataResource).
*/
CustomData.prototype.save = function saveCustomData(cb){
var self = this;
Expand Down
4 changes: 2 additions & 2 deletions lib/resource/PasswordResetToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var utils = require('../utils');
*
* @param {Object} passwordResetTokenResource
*
* The JSON representation of this resource, retrieved the Stormpath REST API.
* The JSON representation of this resource.
*
*/
function PasswordResetToken() {
Expand All @@ -41,4 +41,4 @@ module.exports = PasswordResetToken;
* @param {Function} callback
* The function to call when the delete operation is complete. Will be called
* with the parameter (err).
*/
*/

0 comments on commit dda8d6e

Please sign in to comment.