diff --git a/core/modules/image/image.module b/core/modules/image/image.module index a2b4392..40b8a32 100644 --- a/core/modules/image/image.module +++ b/core/modules/image/image.module @@ -624,7 +624,7 @@ function image_style_load($name) { * - name: An unique name for the style. * - effects: An array of effects. * - is_new: Is set to TRUE if this is a new style, and FALSE if it is an - * existing style. + * existing style. */ function image_style_save($style) { $config = config('image.style.' . $style['name']); diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 78c5866..5cf47e2 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -528,12 +528,12 @@ function node_type_load($name) { * Saves a node type to the database. * * @param object $info - * The node type to save, as an object. + * The node type to save; an object with the following properties: * - type: A string. The machine name of the node type. * - name: A string. The human-readable name of the node type. * - base: A string that indicates the base string for hook functions. For - * example, 'node_content' is the value used by the UI when creating a new - * node type. + * example, 'node_content' is the value used by the UI when creating a new + * node type. * - description: A string that describes the node type. * - help: A string. * - custom: An integer.