Fixed mispell in doc Actvity -> Activity

Summary:
Fixed misspell in react native doc
Closes https://github.com/facebook/react-native/pull/8736

Differential Revision: D3555187

fbshipit-source-id: f9c0e978d3dc7522a2fc58c4013458c97b69a397
This commit is contained in:
Alexey Zankevich 2016-07-13 06:11:32 -07:00 committed by Facebook Github Bot 4
parent 08c375f828
commit 8baaad9b0f
1 changed files with 3 additions and 3 deletions

View File

@ -420,16 +420,16 @@ Now you can listen to the activity's LifeCycle events by implementing the follow
```java ```java
@Override @Override
public void onHostResume() { public void onHostResume() {
// Actvity `onResume` // Activity `onResume`
} }
@Override @Override
public void onHostPause() { public void onHostPause() {
// Actvity `onPause` // Activity `onPause`
} }
@Override @Override
public void onHostDestroy() { public void onHostDestroy() {
// Actvity `onDestroy` // Activity `onDestroy`
} }
``` ```