From ea35a2f48deb7d1d6beb5960e8272fdf7aaf30f4 Mon Sep 17 00:00:00 2001 From: crandmck Date: Tue, 10 Feb 2015 15:18:34 -0800 Subject: [PATCH] Fix API docs per #1041 --- lib/model.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/model.js b/lib/model.js index a6ed0b15..3ecd2841 100644 --- a/lib/model.js +++ b/lib/model.js @@ -362,11 +362,11 @@ Model._getAccessTypeForMethod = function(method) { }; /** - * Get the `Application` the Model is attached to. + * Get the `Application` object to which the Model is attached. * - * @callback {Function} callback - * @param {Error} err - * @param {Application} app + * @callback {Function} callback Callback function called with `(err, app)` arguments. + * @param {Error} err Error object; see [Error object](http://docs.strongloop.com/display/LB/Error+object). + * @param {Application} app Attached application object. * @end */