diff --git a/src/jquery.sketchable.js b/src/jquery.sketchable.js index 06859e2..17a30f4 100644 --- a/src/jquery.sketchable.js +++ b/src/jquery.sketchable.js @@ -74,7 +74,7 @@ }); }, /** - * Change configuration of an existing jQuery Sketchable element. + * Get/Set user configuration of an existing jQuery Sketchable element. * @param {object} [opts] - Configuration (default: {@link $.fn.sketchable.defaults}). * @return {object} jQuery * @memberof $.fn.sketchable @@ -98,7 +98,7 @@ * Retrieve data associated to an existing Sketchable instance. * @param {string} [property] - Top-level data property, e.g. "instance", "sketch", "options". * @return {*} - * @memberof Sketchable + * @memberof $.fn.sketchable * @example * // Read all the data associated to this instance. * var data = $('canvas').sketchable('data'); diff --git a/src/sketchable.js b/src/sketchable.js index 68000e9..fec0683 100644 --- a/src/sketchable.js +++ b/src/sketchable.js @@ -102,7 +102,7 @@ return this; }, /** - * Change configuration of an existing Sketchable instance. + * Get/Set user configuration of an existing Sketchable instance. * @param {object} [opts] - Configuration (default: {@link Sketchable#defaults}). * @return {Sketchable} * @memberof Sketchable