diff options
| author | Carl Danley | 2013-07-22 11:01:00 -0400 |
|---|---|---|
| committer | Pawel Kozlowski | 2013-07-27 20:53:41 +0200 |
| commit | 258e9862840f9d45709664e0e5b2a18540d8828d (patch) | |
| tree | 17386e8499d4103b83e903b437cda808a82579ff /src/ngScenario/ObjectModel.js | |
| parent | 1bc99eca08bef4aceb49d4fee7ef9e291f60ff3b (diff) | |
| download | angular.js-258e9862840f9d45709664e0e5b2a18540d8828d.tar.bz2 | |
docs(*): fixed typos and ngdoc parameter names
Diffstat (limited to 'src/ngScenario/ObjectModel.js')
| -rw-r--r-- | src/ngScenario/ObjectModel.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngScenario/ObjectModel.js b/src/ngScenario/ObjectModel.js index 9c6ce56c..47ee936b 100644 --- a/src/ngScenario/ObjectModel.js +++ b/src/ngScenario/ObjectModel.js @@ -170,7 +170,7 @@ angular.scenario.ObjectModel.prototype.getDefinitionPath = function(spec) { /** * Gets a spec by id. * - * @param {string} The id of the spec to get the object for. + * @param {string} id The id of the spec to get the object for. * @return {Object} the Spec instance */ angular.scenario.ObjectModel.prototype.getSpec = function(id) { @@ -195,7 +195,7 @@ angular.scenario.ObjectModel.Spec = function(id, name, definitionNames) { /** * Adds a new step to the Spec. * - * @param {string} step Name of the step (really name of the future) + * @param {string} name Name of the step (really name of the future) * @return {Object} the added step */ angular.scenario.ObjectModel.Spec.prototype.addStep = function(name) { @@ -229,7 +229,7 @@ angular.scenario.ObjectModel.Spec.prototype.setStatusFromStep = function(step) { /** * A single step inside a Spec. * - * @param {string} step Name of the step + * @param {string} name Name of the step */ angular.scenario.ObjectModel.Step = function(name) { this.name = name; |
