From 9476730cc4f7a3d5dbc61089f93d1f020bf6bd88 Mon Sep 17 00:00:00 2001 From: alpparkan Date: Sat, 4 Nov 2017 11:40:40 -0700 Subject: [PATCH] Fixed "putExtra" typo in HeadlessJSAndroid Summary: Improved documents by fixing a typo No code was changed Closes https://github.com/facebook/react-native/pull/16643 Differential Revision: D6241688 Pulled By: hramos fbshipit-source-id: ffe6f8be369c95bb16fe82719dfc943bb6223191 --- docs/HeadlessJSAndroid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/HeadlessJSAndroid.md b/docs/HeadlessJSAndroid.md index b60f23e42..feed12f5a 100644 --- a/docs/HeadlessJSAndroid.md +++ b/docs/HeadlessJSAndroid.md @@ -90,7 +90,7 @@ Following lines shows part of Android manifest file for registering broadcast re ``` -Broadcast receiver then handles intent that was broadcasted in onReceive function. This is a great place to check whether your app is on foreground or not. If app is not on foreground we can prepare our intent to be started, with no information or additional information bundled using putExta (keep in mind bundle can handle only parcelable values). In the end service is started and wakelock is acquired. +Broadcast receiver then handles intent that was broadcasted in onReceive function. This is a great place to check whether your app is on foreground or not. If app is not on foreground we can prepare our intent to be started, with no information or additional information bundled using putExtra (keep in mind bundle can handle only parcelable values). In the end service is started and wakelock is acquired. ```java public class NetworkChangeReceiver extends BroadcastReceiver {