From a9f710636904454815d234ebe21ae47804e8917b Mon Sep 17 00:00:00 2001 From: Ali Taheri Date: Mon, 14 Dec 2015 03:13:11 +0330 Subject: [PATCH] improve jsdoc wording --- src/dialog.jsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/dialog.jsx b/src/dialog.jsx index b90f97bcd11666..879e1e01340081 100644 --- a/src/dialog.jsx +++ b/src/dialog.jsx @@ -471,12 +471,12 @@ const Dialog = React.createClass({ actions: React.PropTypes.node, /** - * The `className` to add to the `Dialog` actions container's root element. + * The `className` to add to the actions container's root element. */ actionsContainerClassName: React.PropTypes.string, /** - * Overrides the inline-styles of the `Dialog` actions container's root element. + * Overrides the inline-styles of the actions container's root element. */ actionsContainerStyle: React.PropTypes.object, @@ -492,12 +492,12 @@ const Dialog = React.createClass({ autoScrollBodyContent: React.PropTypes.bool, /** - * The `className` to add to the `Dialog` content's root element under the title. + * The `className` to add to the content's root element under the title. */ bodyClassName: React.PropTypes.string, /** - * Overrides the inline-styles of the `Dialog` content's root element under the title. + * Overrides the inline-styles of the content's root element under the title. */ bodyStyle: React.PropTypes.object, @@ -512,12 +512,12 @@ const Dialog = React.createClass({ className: React.PropTypes.string, /** - * The `className` to add to the `Dialog` content container. + * The `className` to add to the content container. */ contentClassName: React.PropTypes.string, /** - * Overrides the inline-styles of the `Dialog` content container. + * Overrides the inline-styles of the content container. */ contentStyle: React.PropTypes.object, @@ -563,12 +563,12 @@ const Dialog = React.createClass({ title: React.PropTypes.node, /** - * The `className` to add to the `Dialog` title's root container element. + * The `className` to add to the title's root container element. */ titleClassName: React.PropTypes.string, /** - * Overrides the inline-styles of the `Dialog` title's root container element. + * Overrides the inline-styles of the title's root container element. */ titleStyle: React.PropTypes.object,