@@ -513,7 +513,7 @@ Transition.propTypes = {
513513 * DOM node and a `done` callback. Allows for more fine grained transition end
514514 * logic. Timeouts are still used as a fallback if provided.
515515 *
516- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
516+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `done` is being passed as the first argument .
517517 *
518518 * ```jsx
519519 * addEndListener={(node, done) => {
@@ -528,7 +528,7 @@ Transition.propTypes = {
528528 * Callback fired before the "entering" status is applied. An extra parameter
529529 * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
530530 *
531- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
531+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
532532 *
533533 * @type Function(node: HtmlElement, isAppearing: bool) -> void
534534 */
@@ -538,7 +538,7 @@ Transition.propTypes = {
538538 * Callback fired after the "entering" status is applied. An extra parameter
539539 * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
540540 *
541- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
541+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
542542 *
543543 * @type Function(node: HtmlElement, isAppearing: bool)
544544 */
@@ -548,7 +548,7 @@ Transition.propTypes = {
548548 * Callback fired after the "entered" status is applied. An extra parameter
549549 * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
550550 *
551- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
551+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
552552 *
553553 * @type Function(node: HtmlElement, isAppearing: bool) -> void
554554 */
0 commit comments