I found this typo in the components section that is [AnimationEvent handler function {/animationevent-handler/}](https://github.com/reactjs/react.dev/blob/main/src/content/reference/react-dom/components/common.md#animationevent-handler-function-animationevent-handler) of react-dom. ``` <div onAnimationStart={e => console.log('onAnimationStart')} onAnimationIteration={e => console.log('onAnimationStart')} // it should be console.log('onAnimationIteration') onAnimationEnd={e => console.log('onAnimationStart')} // it should be console.log('onAnimationEnd') /> ```