Fixes typo, comment

This commit is contained in:
Lyubo Marinov 2018-08-05 17:18:14 -05:00
parent 0892e0b644
commit b9c5ed3b03
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ class VideoTrack extends AbstractVideoTrack {
static propTypes = AbstractVideoTrack.propTypes
/**
* Renders video element with animation.
* Renders the video element for the associated video track.
*
* @override
* @returns {ReactElement}

View File

@ -229,7 +229,7 @@ class VideoTransform extends Component<Props, State> {
onLayout = { this._onLayout }
pointerEvents = 'box-only'
style = { [
styles.videoTransformedViewContaier,
styles.videoTransformedViewContainer,
style
] }
{ ...this.gestureHandlers.panHandlers }>

View File

@ -17,7 +17,7 @@ export default StyleSheet.create({
* that can be visible on special occasions, such as during device rotate
* animation, or PiP mode.
*/
videoTransformedViewContaier: {
videoTransformedViewContainer: {
overflow: 'hidden'
},