diff --git a/modules/image/image.module b/modules/image/image.module index 94536e4..a81cea3 100644 --- a/modules/image/image.module +++ b/modules/image/image.module @@ -668,9 +668,6 @@ function image_style_load($name = NULL, $isid = NULL, $include = NULL) { * - isid: An image style ID. * - is_new: Is set to TRUE if this is a new style, and FALSE if it is an * existing style. - * - * @return - * An image style array. In the case of a new style, 'isid' will be populated. */ function image_style_save($style) { if (isset($style['isid']) && is_numeric($style['isid'])) { @@ -727,7 +724,7 @@ function image_style_delete($style, $replacement_style_name = '') { * @param array $style * An image style array containing: * - isid: The unique image style ID that contains this image effect. - * @return + * @return array * An array of image effects associated with specified image style in the * format array('ieid' => array()), or an empty array if the specified style * has no effects. diff --git a/modules/node/node.module b/modules/node/node.module index 041025f..571b1f9 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -519,8 +519,8 @@ function node_type_load($name) { * - title_label: A string containing the label for the title. * - module: A string giving the module defining this type of node. * - orig_type: A string giving the original machine-readable name of this - * node type. This may be different from the current type name if the locked - * field is 0. + * node type. This may be different from the current type name if the + * 'locked' field is 0. * * @return int * A status flag indicating the outcome of the operation, either SAVED_NEW or