@@ -524,7 +524,7 @@ Transition.propTypes = {
524524 * DOM node and a `done` callback. Allows for more fine grained transition end
525525 * logic. Timeouts are still used as a fallback if provided.
526526 *
527- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
527+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `done` is being passed as the first argument .
528528 *
529529 * ```jsx
530530 * addEndListener={(node, done) => {
@@ -539,7 +539,7 @@ Transition.propTypes = {
539539 * Callback fired before the "entering" status is applied. An extra parameter
540540 * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
541541 *
542- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
542+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
543543 *
544544 * @type Function(node: HtmlElement, isAppearing: bool) -> void
545545 */
@@ -549,7 +549,7 @@ Transition.propTypes = {
549549 * Callback fired after the "entering" status is applied. An extra parameter
550550 * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
551551 *
552- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
552+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
553553 *
554554 * @type Function(node: HtmlElement, isAppearing: bool)
555555 */
@@ -559,7 +559,7 @@ Transition.propTypes = {
559559 * Callback fired after the "entered" status is applied. An extra parameter
560560 * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
561561 *
562- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
562+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
563563 *
564564 * @type Function(node: HtmlElement, isAppearing: bool) -> void
565565 */
0 commit comments